PDA

View Full Version : window size?


Jason
03-19-2003, 11:03 PM
I have a link that opens a popup, now without modifing the link I want to specify in the popup window code the size it is to be when it opens. Is that possible?


Jason

chrismiceli
03-19-2003, 11:14 PM
do this

<body onLoad="javascript: window.ResizeTo(x,y)">

where x and y are the width and height respectively.

Jason
03-20-2003, 12:01 AM
thanks, I got the resizeTo(x,y) to work. Now I just have another question. Using that is there a way to get rid of the scroll bars, title bar...and all that other junk? or do I have to do that in the call with the link using JS?


Jason