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?

12 of 25 people (48%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

Why do Dynamic added form elements, not passed by submit in NN6?

Aug 24th, 2005 05:27
Jonathan Endersby, jsWalter, Joe Bloggs, micky csasznik,


If you're struggling with this problem, make 100% sure that your page is
well formed.
For example the psudo code below will not work because the table/form
elements are in the wrong order. Static content will work in Firefox and
Dynamic content will work in IE and Firefox, but Firefox will not post
through the dynamically generated form elements.
<table>
<form id="123">
  {Dyamically generated content}
</table>
</form>
KEYWORDS: dynamic form elements in firefox post
HTH