[wd_asp elements=’search’ ratio=’100%’ id=1]

Disable button with timer – Multiple Submit

11th October 2015

Jquery - Forms-Posting

jquery icon

$('.submitcomment').val("COMMENT ADDED..\n THINKING...");
var that = this;
$(this).attr("disabled", true);
setTimeout(function() {
enableSubmit(that),
$('.submitcomment').val("ADD COMMENT")
}, 5000);