I am working on a website, now being tested:
I am using the javascript (below) to change two frames at once when clicking on a link:
<head>
function newPages1() {
parent.main.document.location.href="main.html";
parent.left.document.location.href="left_edu_ads.html";
setTimeout('self.location.href="left_edu_ads.html"', 250);
}
</head>
<body>
<a href="JavaScript:newPages1()" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('edu_ads','','gfx/edu_ads_r2.gif',1)" target="main"><img name="edu_ads" border="0" src="gfx/edu_ads_r1.gif" width="150" height="17" alt="Rice & Rice, Ltd. ads, advertisements"></a>
</body>
So far in my testing, this javascript has worked in the newer browsers, except there is some problem with Netscape 4.72 (it even works in Netscape 4.04!) I'm not sure what the problem is. Can someone help me fix this?
Thank you!
I am using the javascript (below) to change two frames at once when clicking on a link:
<head>
function newPages1() {
parent.main.document.location.href="main.html";
parent.left.document.location.href="left_edu_ads.html";
setTimeout('self.location.href="left_edu_ads.html"', 250);
}
</head>
<body>
<a href="JavaScript:newPages1()" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('edu_ads','','gfx/edu_ads_r2.gif',1)" target="main"><img name="edu_ads" border="0" src="gfx/edu_ads_r1.gif" width="150" height="17" alt="Rice & Rice, Ltd. ads, advertisements"></a>
</body>
So far in my testing, this javascript has worked in the newer browsers, except there is some problem with Netscape 4.72 (it even works in Netscape 4.04!) I'm not sure what the problem is. Can someone help me fix this?
Thank you!