Previous Example-|-Next Example-|-Return to Chapter Listing

Example 15.8:
A JavaScript 1.1 Fix for the Link Problem


This time the link will open the secondary window and do nothing more.
Open Secondary Window


This is the script we used. In the HEAD... <SCRIPT LANGUAGE="JAVASCRIPT"> <!-- function WinOpen() { open("window.htm","Window1","location,resize,top=100,left=150,height=250,width=450,toolbar"); } //--> </SCRIPT> Then this link... <A HREF="javascript:WinOpen()">Open Secondary Window</A>
Previous Example-|-Next Example-|-Return to Chapter Listing