I\'m writing a form that has some text input elements loaded dynamically when a select list is changed.
The problem is that when I submit the form those elements are
It's pretty simple, just append the form element to the body tag and set its style to 'display:none'
Your problem seems to be that the dynamically added input elements do not have name
attributes. Input elements require name
attributes if you want their values to be included in the submitted data.