I am trying to dynamically add an iFrame to a page and insert a 'script' tag to the 'head' tag of the iFrame. I am trying to do this through adding an onload event to the body of the iFrame so that the loading javascript i'm appending doesn't slow down the speed of the page. But it doesn't seem to work (or actually add the onload event) in Chrome (or iPhone Safari or Android emulator).
I have successfully created the iFrame with javascript and using the code below trying to add the script tag to the iFrame head:
var iframeTag = document.getElementById('myIframe');
doc = iframeTag.contentWindow.document.open();
doc.write("<body onload=\'var d=document;var h=d.getElementsByTagName(\'head\')[0];var sc=h.appendChild(d.createElement(\'script\'));sc.language=\'javascript\';sc.src=\'iframe.js\';\'");
doc.close();
