Skip to content

Instantly share code, notes, and snippets.

@siteslave
Created January 10, 2014 08:59
Show Gist options
  • Select an option

  • Save siteslave/8348805 to your computer and use it in GitHub Desktop.

Select an option

Save siteslave/8348805 to your computer and use it in GitHub Desktop.
[ประกอบหนังสือ Bootstrap]
<button type="button" id="btn_save" class="btn btn-success"
data-loading-text="กรุณารอซักครู่..."
data-complete-text="finished!">
Save data
</button>
<script>
$('#btn_save').on('click', function(e) {
e.preventDefault();
$this = $(this);
$this.button('loading');
setTimeout(function () {
$this.button('reset');
}, 3000);
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment