Hallo zusammen, ich habe ein Problem beim Firefox Browser wenn ich mittels Javascript in einem Frameset den Inhalt von mehreren Frames austauschen möchte. Habe 4 Frames und möchte mit der navi.html Datei in der 3 Buttons sind, die Inhalte der anderen Frames austauschen. Es klappt bei allen anderen Browsern..nur der Firefox spielt nicht mit...was mache ich falsch?!???
HTML
..das ist mein Frameset..
<html>
<head>
<title>Untitled 2</title>
</head>
<frameset rows="64,25%,*,*">
<frame name="oben" noresize="noresize" scrolling="no" src="top.html">
<frame name="navi" src="navi.html">
<frame name="mitte" src="middle.html">
<frame name="unten" src="bottom.html">
</frameset>
<body>
</body>
</html>
..das ist die navi.html Datei...
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Untitled 1</title>
</head>
<body bgcolor="gray">
<script language="JavaScript">
<!--
function start1(Datei1,Datei2,Datei3)
{
parent.oben.location = Datei1;
parent.mitte.location = Datei2;
parent.unten.location = Datei3;
}
-->
</script>
<table style="width: 100%">
<tr>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><a href="javascript:start1('top.html','middle.html','bottom.html');"><img border="0" alt="Button 1" src="button1.jpg" /></a></td>
<td><a href="javascript:start1('top2.html','middle2.html','bottom2.html');"><img alt="Button 2" src="button2.jpg" border="0" /></a></td>
<td><a href="javascript:start1('top.html','middle.html','bottom.html');"><img alt="Button 3" src="button3.jpg" border="0" /></a></td>
</tr>
</table>
</body>
</html>
Alles anzeigen