Click to See Complete Forum and Search --> : Urgent: Iframe Content


Geat
05-02-2003, 05:33 AM
I need a quick fix!

I'm setting the contents of an IFRAME by using the document.write() method. However, the page thinks that it's still loading after I finish writing into the IFRAME.

I've tried writing an </HTML> tag, but that doesn't work. Is there some method that tells IE the document is ready?

Help!

khalidali63
05-02-2003, 06:45 AM
try using
document.open();
document.write(valriable);
document.close();

Geat
05-02-2003, 07:06 AM
Yeah - I just found that out - thanks mate! Problem solved.