I have the following code working: http://jsfiddle.net/SzW7q/
Admins will be able to go in and create new howto articles and enter new steps over and over again until a particular task has a full article on how to perform everything. Everything is working great with add a new row whenever the admin wants but the problem I am running into is that once the form is submitted only the original row is being posted and all of the clones are not. For example the following tr would post but all of the clones there after would notj
Original row posting:
<tr><th>Step to complete</th><td><input type='hidden' name='stepnum1' /><input type='text' name='step_num_text1' style='width: 350px;'/></td></tr>
Clones that are not posting:
<tr><th>Step to complete</th><td><input type='hidden' name='stepnum2' /><input type='text' name='step_num_text2' style='width: 350px;'/></td></tr>
<tr><th>Step to complete</th><td><input type='hidden' name='stepnum3' /><input type='text' name='step_num_text3' style='width: 350px;'/></td></tr>
Can someone tell me why these new rows aren’t posting and what I can do about it?
Thank you.
Make your markup as
http://jsfiddle.net/SzW7q/1/
I chacked post message: