How do I instruct the browser to open at a specific size?
Is there a way to tel开发者_开发百科l the browser to open the page at some dimension other than full screen?
You can use javascript. There is:
window.open ("http://www.javascript-coder.com","mywindow","menubar=1,resizable=1,width=350,height=250");
or:
window.resizeTo( w,h )
精彩评论