I have an iFrame and have worked out how to clone it using jQuery:
<HTML> <HEAD> <SCRIPT type="text/javascript" src="jquery.js"></SCRIPT> <SCRIPT> function clone_test() { $('#FRAME1').clone().appendTo('#divtag'); } </SCRIPT> </HEAD> <DIV id="divtag"> <iframe id="FRAME1" name="FRAME1" src="http://currencies.typeit.org/" width="360" height="360" frameborder="0"></iframe> </DIV> <a href="javascript:clone_test()" target="FRAME1">- CLONE THE iFRAME -</a> </HTML> But this is not what I want! My problem is that anything typed in the currency box is not included in the cloning process. It seems only the HTML is cloned, not the actual contents of the iFrame. Is there anyway possible to clone the iFrame including anything typed in the currency box? This only has to work for the Chrome browser as I am making a Chrome extension.