HTML and CSS Reference
In-Depth Information
<title>I need a window of my own</title>
<script language="JavaScript">
<!--
if (self != window.top)
window.open("http://www.kumquats.com/index2.html");
else
self.location.href = "http://www.kumquats.com/index2.html";
//-->
</script>
</head>
<body>
Your browser apparently doesn't support JavaScript. Please
<a href="http://www.kumquats.com/index2.html"> hyperlink to our site manually.</a>
</body>
</html>
17.4.3. Multiple Frames in One Link
Loading a new document from a hyperlink is a snap, even if you put the
new document into an alternative frame or window from its hyperlink
parent. Occasionally, though, you'll want to load documents into two
frames when the user clicks just one link. With a bit of trickery, you can
load two or more frames at once, provided they are arranged a certain
way in the browser window.
Consider this frame layout:
<frameset rows=2>
<frameset cols=2>
<frame name=A>
<frame name=B>
</frameset>
<frameset>
<frame name=C>
<frame name=D>
 
Search WWH ::




Custom Search