jQuery has a clone() function that clones the actual form with no problem, but it doesn't preserve any values that have been entered into the form.
Is there a way to get around this?
Sample code would be much appreciated.
|
Use this code to copy textarea values
|
|||
|
|
|
Found this problem and wrote this wrapper:
|
||||
|
|
|
Another easy fix for the textarea values not being cloned is to include the following JavaScript file in your HTML: https://github.com/spencertipping/jquery.fix.clone It just patches the clone method so you can include the file and then forget it's there. Apparently there is a problem with cloneing select values too and this same file fixes that problem as well. This file was linked to from: http://bugs.jquery.com/ticket/3016. The bug is 4 years old. |
|||
|
|
|
ran into the same problem, simple solution:
the trick is that this will change the actual 'value' attribute in the DOM tree, otherwise the data you enter 'on-the-fly' only exists in the DOM 'state' |
|||
|
|
|
You may use this jQuery Plugin.
|
|||
|
|
|
Stemming from the notes, here's a solution. With the following form:
This jQuery works, including the textareas:
​Demo: http://jsfiddle.net/Jux3e/ |
|||
|
|
value, andcheckeddirectly. When we clone a node, the representation of each DOM node gets copied which does not include object properties such asvalue. One solution is to copy the relevant properties - (value, checked, selected) for each form control into the cloned nodes. The other is to modify the element whenever making a change. So instead of element.val('something'), do element.setAttribute('value', 'something') which should work find when cloning. – Anurag Jul 15 '10 at 3:13