Submit Once
-
Hi Can you help
We need to avoid people clicking submit more than once.
Using something like
<script type=”text/javascript”>
function checkForm(form) // Submit button clicked
{
//
// check form input values
//form.myButton.disabled = true;
form.myButton.value = “Please wait…”;
return true;
}function resetForm(form) // Reset button clicked
{
form.myButton.disabled = false;
form.myButton.value = “Submit”;
}</script>
The page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Submit Once’ is closed to new replies.