Netscape Problems!

liunx

Guest
Hi, at present i am using an IFrame to display another site's share information within a page on my own site.<br />
The user can click within the Iframe and only the page inside the IFrame refreshes. This works fine in IE but with Netscape??!! It works in Netscape 6 now but my users only have Netscape 4.7! I've tried an ILayer, but when a link is clicked the whole page is redirected! Plus the Ilayer has to be outside a table!!<br />
<br />
Please help!<br />
<br />
Thanks<br />
<br />
Axum<!--content-->Iframe was made by IE, and thus is only supported by NS later. NS 4.7 and lower does not support it.<!--content-->wow thanks! I made that pretty obvious from my post....<br />
<br />
I'm looking for an alternative or some help with the ILayer...<br />
<br />
Axum<!--content-->Popup a new window :)?<!--content-->Hi,<br />
<br />
How are you accessing the ilayer? The following (excluding non-domain urls) works for me:<br />
<br />
function doit(divID)<br />
{<br />
if (document.layers)<br />
document.divID.src= <!-- m --><a class="postlink" href="http://www.htmlforums.com/archive/index.php/somepage.html;">http://www.htmlforums.com/archive/index ... page.html;</a><!-- m --><br />
else<br />
document.all[divID].src= <!-- m --><a class="postlink" href="http://www.htmlforums.com/archive/index.php/somepage.html;">http://www.htmlforums.com/archive/index ... page.html;</a><!-- m --><br />
}<br />
//--><br />
</script><br />
</head><br />
<body><br />
<form><br />
<input type="text" name="email" onFocus="doit('a')"><br />
</form><br />
<table><br />
<tr><td><br />
<ilayer name='a' src='http://members.aol.com/grassblad'><iframe id = 'a' src='http://members.aol.com/grassblad'></iframe></ilayer><br />
</td></tr></table> <br />
<br />
Vinny<!--content-->i'll give that a go! Thanks. And no i can't do the obvious thing and pop up a new window..<br />
<br />
Axum<!--content-->
 
Back
Top