Hi,
i am creating a pop-up window and i want to show the contents of a Div in the pop-up window.How to copy the contents of the Background WIndow and to make them to append it to pop-up window .Since i want to show the same preview of the backend panel in the pop-up window .How to do so.
WHere, my background panel is
<div id="fb_contentarea_down21">
<div id="field1">
<input id="input1"></input>
</div>
<div id="field2">
<textarea id="input2"></textarea>
</div>
</div>
And i want to show these things(background) to the Preview window how to do so. the following is the Pop-up window..
<div id="popupContact" style="position: absolute; top: 208px; left: 436px; display: none;">
<a id="popupContactClose">x</a>
<h1>Title of our cool popup, yay!</h1>
<p id="contactArea">
</p>
</div>
How to show the contents of fb_contentarea_down21 in the ContactArea...