|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I want to submit a form when a user clicks a link. I use the following code:
<script type="text/javascript"> function go_submit(form) { form.submit(); } </script> ... <form name="test" method="post" action="http://test.com/test.cgi"></form> ... <a href="javascript:go_submit(document.test);">Test</a> It works in Internet Explorer 5.5 but not Netscape 4.76. Any ideas?? |
|
#2
|
|||
|
|||
|
Just a wild guess: try this one:
<script type="text/javascript"> function go_submit(form) { form.submit(); return true; } </script> Geert |
![]() |
| Viewing: Dev Shed Forums > Web Design > HTML Programming > Form submit problem in Netscape |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|