Skip to content

Instantly share code, notes, and snippets.

@IvanAlekseevichPopov
Created September 25, 2017 06:04
Show Gist options
  • Select an option

  • Save IvanAlekseevichPopov/014c4a152de40549576546d85a11bc6e to your computer and use it in GitHub Desktop.

Select an option

Save IvanAlekseevichPopov/014c4a152de40549576546d85a11bc6e to your computer and use it in GitHub Desktop.
loading animation in button
<div style="margin:3em;">
<button type="button" class="btn btn-primary btn-lg " id="load" data-loading-text="<i class='fa fa-circle-o-notch fa-spin'></i> Processing Order">Submit Order</button>
<br>
<br>
<button type="button" class="btn btn-primary btn-lg" id="load" data-loading-text="<i class='fa fa-spinner fa-spin '></i> Processing Order">Submit Order</button>
</div>
$('.btn').on('click', function() {
var $this = $(this);
$this.button('loading');
setTimeout(function() {
$this.button('reset');
}, 8000);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment