I have an IFRAME that should be filled with content from JavaScript. Had the content be on the server all I had to do is:
function onIFrameFill() {
Tried setting
but that does not work. Solution by Jeffery To works. Just want to add that .innerHTML
might not work in old browsers (read IE old versions) so you can domyIframe.contentWindow
var iFrameWindow = myIframe.contentWindow || myIframe.documentWindow;
var iFrameDoc = iFrameWindow.document;
then use the document open(), write() & close() as above.