The format for opening windows is below:<br><br>window.open("URL", "windowName", "features"<br><br>The URL is the page that will load into the new window, the windowName is what you will identify the window as (so you can load other pages into that window), and the features are explained below.<br><br>toolbar=yes¦no<br>location=yes¦no<br>directories=yes¦no<br>status=yes¦no<br>menubar=yes¦no<br>scrollbars=yes¦no<br>resizable=yes¦no<br>width=Num¦Percent<br>height=Num¦Percent<br>screenX=Num<br>screenY=Num<br><br>Features must appear as a group in parenthases, separated by a comma. screenX and Y will move the window to the x,y coordinate on the screen. <br><br>window.open("", "", "width=100, height=100, screenX=0, screenY=0"<br><br>Jonathan
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.