Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape "document.form.submit"

Status
Not open for further replies.

ecf

Programmer
Joined
May 28, 2002
Messages
1
Location
US
Can anyone tell me if there is a workaround in netscape for "document.form.submit". Works in IE but not in Netscape.
 
\\ maybe this will do
document.formname.submit();

\\ or this maybe
<div id=thediv><form></form></div>

where = document.getElementById('thediv').getElementsByTagName('form');

where[0].submit(); ---------------------------------------
wmail.jpg


someone knowledge ends where
someone else knowledge starts
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top