Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. $('button').click(function() {
  2. this.prop('disabled',true);
  3.  
  4. setTimeout(function(){
  5. this.prop('disabled', false);
  6. }, 5000);
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement