Geht dieses Skript auch bei Nested Frames?
mein Problem:
Frameseite1(index1): besteht aus Navigationsmenue "oben", "links" und "mitte"
Frameseite2 (index2): besteht aus einem weiteren Navigationsmenü "oben2" und "mitte2"
Nun möchte ich, daß bei einem Link von "oben"(oben.html) auf 1.html diese Seite in "mitte2" aufgerufen wird und zugleich ein andere Seite 2.html in "links". Ist das machbar, oder scheitert es an den zwei Framesets?
Frameseite1:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE">
<html>
<head>
<script language="JavaScript">
<!--
if(top.frames.length > 0)
top.location.href=self.location;
//-->
</script>
<title>index1</title>
</head>
<frameset framespacing="0" frameborder="0" border="false" rows="45,*">
<frame name="oben" scrolling="no" target="Inhalt" src="oben.html" marginwidth="2"
marginheight="2">
<frameset cols="180,*">
<frame name="links" target="links" src="links.html" scrolling="auto" marginwidth="2"
marginheight="0">
<frame name="mitte" src="index2.htm" scrolling="auto" marginwidth="5" marginheight="5">
</frameset>
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
Frameseite2:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//DE">
<html>
<head>
<base target="mitte2">
<title>Index2</title>
</head>
<frameset frameborder="0" framespacing="0" border="0" rows="40,*">
<frame SRC="register.html" NAME="oben2" NORESIZE scrolling="no" marginwidth="0"
marginheight="3" frameborder="0" framespacing="0" target="mitte2">
<frame SRC="html/mitte.html" NAME="mitte2" scrolling="auto" frameborder="0"
framespacing="0" target="mitte" marginwidth="2" marginheight="5">
<noframes>
<body>
</body>
</noframes>
</frameset>
</html>
MfG Kai Baumgartner