I have a div
<div id="container">
<iframe id="survey" src="somepage"></iframe>
</div>
Now the page loads inside the iframe
I want to remove all the other items except a div inside the iframe
$("#container").html($("#survey .requiredDiv").html())
But this is not working
Is it possible to do such thing? What should be done?