Try to implement the delay on client side. Instead of submitting the
form directly, call a function with an internal timer.
Something like:
function delayedSubmit(form) {
if (form._delayedSubmit != null)
clearTimeout(form._delayedSubmit);
form._delayedSubmit = setTimeout(function() {
form.submit();
}, 500);
}
Didnt run this code but i think it should work. At least the concept
should be clear :>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]