faqts : Computers : Programming : Languages : JavaScript : Forms

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

41 of 62 people (66%) answered Yes
Recently 3 of 10 people (30%) answered Yes

Entry

How Can I make the nested Form And How do Control that?

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);