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()
using count,
clickcount++; if (clickcount == 1) {}
After coming back again clickcount set to zero.