May 28, 2002 #1 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.
Can anyone tell me if there is a workaround in netscape for "document.form.submit". Works in IE but not in Netscape.
May 28, 2002 #2 NEVERSLEEP Programmer Joined Apr 14, 2002 Messages 667 Location CA \\ 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(); --------------------------------------- someone knowledge ends where someone else knowledge starts Upvote 0 Downvote
\\ 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(); --------------------------------------- someone knowledge ends where someone else knowledge starts