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