Disable Button...

  • Thread starter Thread starter 116
  • Start date Start date
1

116

I have a button on a page that when clicked increments a number. I am
looking for an example of script that will only allow the button clicked once
until the form has been submitted.

David
 
<button type="button" onclick="if(varClick==0) { do increment here;
varClick=1; }">Click Me</button>
 
Back
Top