There are multiple <input /> and <textarea> in the <form>,but none have their id or name.
Is it possible to take a snap shot of every thing inside the <form> and render it when need?
feedback
|
|
I'm not sure why you would have a bunch of inputs lacking names and id's, but you could cycle through and generate a name/id for each, and then serialize them using $.serialize();
| |||||||||||||||||
feedback
|
| |||||
feedback
|
|
Updated This answer works for checkboxes, radio buttons, input and textareas. If you wanted select support, just add an additional test/type and parallel setter. Store the values:
Restore the values:
This assumes the same order both times. It is (dare I say) impossible to store values without | |||||||||||||
feedback
|