Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript thread: Re: Is it possible to Dynamicly create Frames


Message #1 by DANIEL RADU <radudanielro@y...> on Mon, 3 Sep 2001 01:15:25 -0700 (PDT)
try:

<html>
<head>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<title />

<script for="window" event="onload" type="text/javascript">

	fs1.cols = "165,*";
	
	var f1 = document.createElement("frame");
	f1.src = "frame1.htm";
	fs1.appendChild(f1)
	var f2 = document.createElement("frame")
	f2.src = "frame2.htm"
	fs1.appendChild(f2)

</script>

</head>

<frameset id="fs1">
</frameset>

</html>


  Return to Index