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

Example 14.2:
Configuring the Window--A Complete Window


The secondary window contains all the normal window elements:


This is the script we used. In the HEAD... <SCRIPT LANGUAGE="JAVASCRIPT"> <!-- function WinOpen() { open("window.htm","Window1"); } //--> </script> Then this button... <form> <input type="button" name="WindowButton" value="Secondary Window--Click on me" onclick="WinOpen()"> </form>
Previous Example-|-Next Example-|-Return to Chapter Listing