hallo
ich hab ein problem wenn ich mit java script die inhalte zweier frames aendern will. irgendwie hab ich wenn ich auf den link zum aendern klicke immer einen permanenten ladebalken unten im internet explorer. ich mein, es funktioniert zwar, aber zB auf selfhtml das beispiel - dort ist das nicht. ist das weil ich mehr frames habe?...
index.php:
<frameset rows="70,*,40" border=0 framespacing=0 frameborder=0>
<frame src="blank.php" name="top" marginwidth=0 marginheight=0 scrolling=no noresize>
<frameset cols="150,*" border=0 framespacing=0 frameborder=0>
<frame src="menu.php" name="menu" marginwidth=0 marginheight=0 scrolling=no noresize>
<frame src="blank.php" name="action" marginwidth=0 marginheight=0 scrolling=no noresize>
</frameset>
<frameset cols="*,10,10,10,10,10" border=0 framespacing=0 frameborder=0>
<frame src="blank.php" name="bottom" marginwidth=0 marginheight=0 scrolling=no noresize>
<frame src="blank.php" name="reload1" marginwidth=0 marginheight=0 scrolling=no noresize>
<frame src="blank.php" name="reload2" marginwidth=0 marginheight=0 scrolling=no noresize>
<frame src="blank.php" name="reload3" marginwidth=0 marginheight=0 scrolling=no noresize>
<frame src="blank.php" name="reload4" marginwidth=0 marginheight=0 scrolling=no noresize>
<frame src="blank.php" name="reload5" marginwidth=0 marginheight=0 scrolling=no noresize>
</frameset>
</frameset>
menu.php:
<html>
<head>
<script language="JavaScript">
<!--
function ChangeTwoFrames(url1,f1,url2,f2) {
Frame1=eval("parent."+f1);
Frame2=eval("parent."+f2);
Frame1.location.href = url1;
Frame2.location.href = url2;
}
//-->
</script>
</head>
<body>
Open Games
</body>
</html>
das ganze gibts hier zum anschaun:
http://www.nineinchnails.at/game/test/
auf selfhtml gehts ja ohne den ladebalken:
http://selfhtml.teamone.de/javascrip...zweiframes.htm
http://de.selfhtml.org/javascript/be...zweiframes.htm
weiß da wer eine lösung?