No double click
Sorry Jimmy I dont have much faith in this because:
One post says:
Working on some other problem, I found a solution to it. I added the following attribuut to the submit button:
onClick="disabled=true;this.form.submit();return true;"
and another says:
Do not use submit button, but form onsubmit event.
<form onsubmit="return verifyData(this)" ...
function verifyData(myForm)
{ /* Do your data verification here */
/* If everything is ok and you are ready to submit */
myForm.onsubmit = function()
{ alert('How about some patience, huh? ;^)');
return false;
};
return true;
}
fredmv
02-24-2004, 05:46 PM
Do not use submit button, but form onsubmit event.Completely correct; can't believe I didn't think of that.
So I am totally confused on what to use and exactly how to implement it.
Thanks,
Neil