Skip to content

Instantly share code, notes, and snippets.

@emad-elsaid
Created January 2, 2016 20:47
Show Gist options
  • Save emad-elsaid/7f683d6c80b6034ca796 to your computer and use it in GitHub Desktop.
Save emad-elsaid/7f683d6c80b6034ca796 to your computer and use it in GitHub Desktop.
disable submit button and enable it after 3 seconds
$(function(){
$('button[type="submit"]').click(function(){
var _this = $(this);
_this.attr('disabled', 'disabled');
setTimeout(function(){
_this.removeAttr('disabled');
}, 3000);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment