Imagine I have the following HTML:
<div><span><b>This is in bold</b></span></div>
I want to get the HTML for the div, including the div itself. Element.innerHTML only returns:
<span>...</span>
Any ideas? Thanks
|
Imagine I have the following HTML:
I want to get the HTML for the div, including the div itself. Element.innerHTML only returns:
Any ideas? Thanks |
|||
|
|
|
Expanding on jldupont's answer, you could create a wrapping element on the fly:
I am cloning the element to avoid having to remove and reinsert the element in the actual document. This might be expensive if the element you wish to print has a very large tree below it, though. |
|||||||||||
|
|
If you want a lighter footprint, but a longer script, get the elements innerHTML and only create and clone the empty parent-
|
||||
|
|
|
as outerHTML is IE only, use this function:
creates a bogus empty element of the type parent and uses innerHTML on it and then reattaches the element back into the normal dom |
|||
|
|
|
You'll want something like this for it to be cross browser.
|
|||||||
|
|
Use
|
|||||||||||||||||||
|
|
First, put on element that wraps the
=>
and then:
Note that |
|||||||||||
|
|
|||||||||||
|