JavaScripties:
On the HTML side, we load an IFRAME with a blank page:
<iframe frameborder="0" marginwidth="0" marginheight="0 " scrolling="off"
src="about:blan k" id="iframe_xml1 !format_text"
name="iframe_xm l1!format_text" width="90%" height=" 180 ">Your browser is
inferior and doesn't support IFRAMEs.</iframe>
Later, a button click populates this frame:
var iframe = window.frames[iframeName];
iframe.src = outputUrl;
That works on IE but not FireFox. Any tips?
--
Phlip
On the HTML side, we load an IFRAME with a blank page:
<iframe frameborder="0" marginwidth="0" marginheight="0 " scrolling="off"
src="about:blan k" id="iframe_xml1 !format_text"
name="iframe_xm l1!format_text" width="90%" height=" 180 ">Your browser is
inferior and doesn't support IFRAMEs.</iframe>
Later, a button click populates this frame:
var iframe = window.frames[iframeName];
iframe.src = outputUrl;
That works on IE but not FireFox. Any tips?
--
Phlip
Comment