![]() |
|
|
+ Search |
![]()
|
May 29th, 2000 13:43
Mike Hall, Young Ki Ko, http://developer.netscape.com/docs/manuals/htmlguid/index.htm
Forms cannot be nested. You can, however, define multiple forms on a
page and access them via the document.forms array:
for (var i = 0; i < document.forms.length; i++)
alert("Name: " + document.forms[i].name + "\n" +
"Action: " + document.forms[i].action + "\n" +
"Method: " + document.forms[i].method);