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()
We can use on and off click for preventing Multiple clicks. i tried it to my application and it's working as expected.
$(document).ready(function () { $("#disable").on('click', function () { $(this).off('click'); // enter code here }); })