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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

create dynamically a form

Status
Not open for further replies.

aigarzzz

Programmer
Apr 5, 2006
16
LV
myform=document.createElement("form");
myinput = document.createElement("input");
myinput.setAtribute('type','text');
myinput.setAtribute('name','formName');
myform.appendChild(myinput);

i dont understand why it doesn't work..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top