I have page with html something like this
<body><iframe ></iframe><div id="menu">......</div>.....</body>
I want to get the innerHTML of the body but without the iframe? How can i do that in jquery?
|
I have page with html something like this
I want to get the innerHTML of the body but without the iframe? How can i do that in jquery? |
|||
|
Try with
|
|||||||||
|
that should get everything in the body but the iframe. you'll probably want to store that in a variable or something for reference later |
|||||||||||
|
|
I have found another way to do it
html variable contains the html without the iframe. And it works with IE, since jquery.clone() did not work on my page may be because of malformed html as @lonesomeday suggestted |
|||
|
|
<iframe>out of the DOM, grabbing the innerHTML, and then putting the<iframe>back? – Pointy Jan 18 '11 at 18:38