How to add a spinner icon to button when it’s in the Loading state?

Twitter Bootstrap’s buttons have a nice Loading… state available. The thing is that it just shows a message like Loading… passed through the data-loading-text attribute like this: <button type=”button” class=”btn btn-primary start” id=”btnStartUploads” data-loading-text=”@Localization.Uploading”> <i class=”icon-upload icon-large”></i> <span>@Localization.StartUpload</span> </button> Looking at Font Awesome, you see that there’s now an animated spinner icon. I tried to … Read more