Thank you very much.
Laurie Harper wrote:
>
> I did what I should have done in the first place and looked it up:
> Form.submit() is specified to *not* call the onsubmit handler, so this
> is the correct behaviour (and should be consistent across all browsers).
>
> When in doubt, check the do
I did what I should have done in the first place and looked it up:
Form.submit() is specified to *not* call the onsubmit handler, so this
is the correct behaviour (and should be consistent across all browsers).
When in doubt, check the documentation :-)
L.
cacodemon79 wrote:
Bingo!
Now it wo
Hi,
2008/6/23 cacodemon79 <[EMAIL PROTECTED]>:
>
> Bingo!
> Now it works!
> Thanks a lot.
> However i can't understand why the onsubmit handler is not triggered by the
> submit() function!
>
Maybe it depends on Web Browser, did you try with others?
Regards
--
Lukasz
http://www.lenart.org.pl/
Bingo!
Now it works!
Thanks a lot.
However i can't understand why the onsubmit handler is not triggered by the
submit() function!
Laurie Harper wrote:
>
> Did you confirm whether calling the form's submit() method triggers its
> onsubmit handler? It may be that calling submit() bypasses it, in
Did you confirm whether calling the form's submit() method triggers its
onsubmit handler? It may be that calling submit() bypasses it, in which
case an explicit guard in your submit function might do the trick:
function submitRegistrazioneUtenteForm(nomeForm){
var form = ...;
if (validateRe
Hi,
Maybe you should install Firebug for Firefox (not working with 3.0)
and debug the JavaScript?
Regards
--
Lukasz
http://www.lenart.org.pl/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL
No suggestions? :(
I also tried to use
document.registrazioneUtenteForm.submit()")
instead of
eval("document."+nomeForm+".submit()")
but the result is the same. The form is submitted but I can't see any
javascript alerts.
I can't understand where is the problem.
I hope you can help me.
Thanks.
7 matches
Mail list logo