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

Example 14-4:
Configuring the Window--Mix and Match


This secondary window has Location and Toolbars, it's resizable, and it's height and width have been set. No scrollbars, though, because scrollbars was incorrectly entered, after a space.



This is the script we used. In the HEAD... <SCRIPT LANGUAGE="JAVASCRIPT"> <!-- function WinOpen() { open("window.htm","Window1","location,resize,height=250,width=450,toolbar, scrollbars"); } //--> </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