How do I submit a form in netscape?
If I have a file in the form of:
<html>
<head>
</head>
<body bgcolor="#000066" text="#000000">
<form id = "frm" name="frm" method="post" action="someplace" style="MARGIN-BOTTOM: 0px; MARGIN-TOP: 0px" >
<input type = "hidden" id="Something" VALUE="9" >
<input type = "hidden" id = "something else" name="UserID" VALUE= "u99">
<input type="checkbox" name="checkbox2" >
</form>
</body>
</html>
and I want to submit it (not using a 'submit' button, but through a script callback function), how is it done? I've tried variations of window.document.frm.document.submit();
and window.document.getElementById("frm".submit();
and nothing happens
(I need to know how to do it in bith N4 and N6)
Thanks, Ron
If I have a file in the form of:
<html>
<head>
</head>
<body bgcolor="#000066" text="#000000">
<form id = "frm" name="frm" method="post" action="someplace" style="MARGIN-BOTTOM: 0px; MARGIN-TOP: 0px" >
<input type = "hidden" id="Something" VALUE="9" >
<input type = "hidden" id = "something else" name="UserID" VALUE= "u99">
<input type="checkbox" name="checkbox2" >
</form>
</body>
</html>
and I want to submit it (not using a 'submit' button, but through a script callback function), how is it done? I've tried variations of window.document.frm.document.submit();
and window.document.getElementById("frm".submit();
and nothing happens
(I need to know how to do it in bith N4 and N6)
Thanks, Ron