Forum Moderators: open
<html>
<head>
<title>Frames page</title>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
<meta content="MSHTML 6.00.2900.2802" name="GENERATOR" />
</head>
<frameset cols="100%,*">
<frame src="MSIE_Home_page.htm" />
<frame src="MSIE_sound.htm" />
</frameset>
</html>
Help!
<frameset cols="100%,*" onload="loadSound(); return true;">
<frame src="MSIE_Home_page.htm" />
<frame src="blank.html" name="fr_sound"/>
</frameset>
</html>
function loadSound(){
fr_sound.location.replace('sound.html');
}
The details may not be quite right, but you should be able to make it work.
Kaled.
fr_sound.location.replace('sound.html');
causes the page sound.html to be loaded into the frame fr_sound. It does so in a way that doesn't break the user's back button.
I can't remember where you put the javascript in a frameset, but other than that, I think you've got everything you need to make this work.
Kaled.