Click to See Complete Forum and Search --> : Need a little help on screne positioning, please!


D.S.R.Clark
07-07-2003, 07:38 PM
To whom it may concern,

I would appreciate any help with a rather simple problem. I am still in kindergarden as far as programming goes.

I would like my pop-up window to open in the upper left corner. I know it has to do with "x" and "y." But I do not know where to put it. Here is the string I am working with:


...onclick="window.open(this.href, 'child', 'height=460,width=640'); return false">

Thank you in advance for any help

David Clark

pyro
07-07-2003, 07:40 PM
You put it after your width and height (or before, for that matter...)

...onclick="window.open(this.href, 'child', 'height=460,width=640,left=0,top=0'); return false">

D.S.R.Clark
07-07-2003, 07:49 PM
Thank yo for your help!

David Clark

pyro
07-07-2003, 07:50 PM
You're welcome... :)