specify window size, no toolbar and no scrollbar

liunx

Guest
how do i make it so that when my page is opened, it can be opened to a specific size, with no scrollbars and no toolbar or anything at the top?<!--content-->Take a look here,<br />
you will see how to open up a child window with specific dimensions as wll as how to position a child window on the screen<br />
<br />
<!-- m --><a class="postlink" href="http://68.145.35.86/skills/javascripts/CentralizedPopupWindow.html">http://68.145.35.86/skills/javascripts/ ... indow.html</a><!-- m --><!--content-->Please note that the example given above will leave you with link that will fail for more that one in ten users. The following will keep things working on all browsers.<br />
<br />
<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.w3.org/" onclick="window.open(this.href,'child', 'height=400,width=300'); return false">W3C</a><br />
<br />
And see <!-- m --><a class="postlink" href="http://developer.netscape.com/docs/manuals/js/client/jsref/window.htm#1202731">http://developer.netscape.com/docs/manu ... tm#1202731</a><!-- m --> for how to specify the feature of the child window.<!--content-->
 
Back
Top