Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

4 Answers

up vote 6 down vote accepted

You can't.

If you need it, store the original markup in a JavaScript var before making any modifications.

share|improve this answer
correct by definition. – The Surrican May 16 '11 at 20:04
correct because a thief master said so. – pixelbobby May 16 '11 at 20:06
Thanks, and thanks @pixelbobby for the jQuery method below – Anthony May 18 '11 at 4:35

A straightforward approach would be to preserve the original markup in a hidden div. Then, clone that hidden content.

Another option would be to do an AJAX request to retrieve the original document, then load the HTML you want to duplicate from there.

share|improve this answer

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

share|improve this answer

Try putting it in a variable before the DOM is manipulated. I use this method for jQuery templating... var template = $('#template').html()

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.