Disable Button...

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
 
M

Murray

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