tags:

views:

28

answers:

2

is it possible to default a window size to 1280 width on websites not full screen?

If we can default it to that size would it be a problem for people who only has their resolution set on 1024?

A: 

Use Javascript

window.open ("http://www.javascript-coder.com",
"mywindow","resizable=1,scrollbars=1,width=1280,height=250");

Check here

scrollbars=1 will take care of the 1024 screen size.

madatanic
+1  A: 

is it possible to default a window size to 1280 width on websites not full screen?

If we can default it to that size would it be a problem for people who only has their resolution set on 1024?

rlb.usa