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

I have an iframe loaded with some content. I would like to move it inside the DOM without causing a refresh (I like the content inside it, I want to keep it).

I'm doing some basic node.appendChild(iframe) to do the job.

Is that possible?

Thanks in advance for your help.

share|improve this question

2 Answers

up vote 4 down vote accepted

If you're trying to move it visually, you can try modifying the CSS to use absolute positioning or some other adjustments.

However, if you're trying to actually pull it out of the DOM and insert it somewhere else, you won't be able to avoid a reload.

share|improve this answer
No I'm not wanting to move it visually. So what I was afraid of is real. Too bad. :'( – Savageman Sep 15 '11 at 16:35

I don't think so, as the browser is going to re-render/reload the iframe when it's put back in the DOM.

http://polisick.com/moveNode.php better explains it.

To move a node you call removeNode to take it out of the tree and into memory, then appendNode to 'paste' it back where you want it.

share|improve this answer
I don't want to remove it and put it back. I just wish to move it. – Savageman Sep 15 '11 at 16:34
That is how it gets moved. Same as the clipboard. Cut/Paste. – Drazisil Sep 15 '11 at 16:35
Ok. Doesn't look optimal but I have no idea how it works so... Thanks. – Savageman Sep 15 '11 at 16:37

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.