jquery - Open page in window of specific size -



jquery - Open page in window of specific size -

the next javascript opens window required in ie8, ff4 , safari 5.0.5 not in opera or chrome.

function setwindowsize(){ var window_height = 600; var window_width = 600; window.resizeto(window_width, window_height); }

i jquery script same, , in both opera , chrome.

should not difficult, it's got me beaten.

i think seeking for:

function popitup(url) { newwindow=window.open(url,'name','height=200,width=150'); if (window.focus) {newwindow.focus()} homecoming false; }

edited: sorry seems got wrong, take @ link: other forum

jquery

Comments

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -