I have a HTML page which contains two DIV elements. I want to arrange these two in a way such that one of them occupies the whole page and the other one shows up as a small preview box on the top right of the browser. when user clicks on preview, the contents of that DIV is swapped with DIV occupying the page.
The div elements are google widgets. (Annotated timeline, motion chart etc).
EDIT: I am using the method provided by wdm for achieving the above asked question. The issue now is that I have a IFRAME which I want to swap with a DIV element. I put the IFRAME inside the DIV tag as follows
<div class="b small">
<iframe src="http://somerandomsite.com" name="framename" id="frameid"> </iframe>
</div>
The iframe is Not resizing correctly. I assume its because the CSS formating is not working on the iframe element properly.
Any ideas how I can resize the iframe so that it changes size on click?