I have following jQuery code to prevent double clicking a button. It works fine. I am using Page_ClientValidate() to ensure that the double click is prevented o
Page_ClientValidate()
May be this will help and give the desired functionality :
$('#disable').on('click', function(){ $('#disable').attr("disabled", true); });
Disable Me! Hello
Hello