I need to clone a section of markup that has already been modified in the DOM. I want to get the original HTML source - what is seen in View > Source.
clone() uses what's in the DOM
|
|
|
You can't. If you need it, store the original markup in a JavaScript var before making any modifications. |
|||||||
|
|
|
A straightforward approach would be to preserve the original markup in a hidden Another option would be to do an AJAX request to retrieve the original document, then load the HTML you want to duplicate from there. |
|||
|
|
|
you would need to copy that HTML into something before the changes are made to the DOM. what the DOM currently has at any given point in time is what you have access to, not past/future versions unless you explicitly saved them to something |
|||
|
|
|
Try putting it in a |
|||
|
|