I'm using jQuery + FlyDOM to add new elements dynamically after page load to the DOM tree. I'm adding new input fields this way. They are clearly within <form></form> tags (added as children to a <div> within the <form></form> ). However, when I submit the form, only the pre- existing input fields get submitted and show up in PHP's $_POST variable.
Any idea how to get the new input fields to submit as well? Thanks