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

Example 2.4:
Opening Secondary Windows








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