I have an Iframe in a div and want to move it to another div, when i do that the iframe content is reloaded, it's possible prevent that happens? somehow prevent that iframe access the Internet.
<div id="wrapper">
<iframe id="iframe1" src="https://www.youtube.com/embed/kd9TlGDZGkI"></iframe>
</div>
<div id="wrapper2"></div>
$('#iframe1').appendTo($('#wrapper2'));