PDA

View Full Version : Writing Text Into iFrames


gh0stman
08-18-2003, 08:28 AM
Ok I have this code

<code>
<iframe id="dynstuff" src="" width=150 height=150 marginwidth="0" marginheight="0" hsoace="0" vspace="0" frameborder="1" scrolling"yes"></iframe>
</code>
but how do I get text into it?? I making a section for java codes but I need to know this in order to do so

glenngv
08-18-2003, 09:02 AM
<iframe id="dynstuff" name="dynstuffname" src="" width=150 height=150 marginwidth="0" marginheight="0" hsoace="0" vspace="0" frameborder="1" scrolling"yes"></iframe>

...

var iframeWin = window.dynstuffname;
iframeWin.document.write('<html><body>This is dynamically generated.</body></html>');
iframeWin.document.close();