PDA

View Full Version : Pop-up Centering?


fat_dog
07-02-2002, 04:48 PM
lol I know this sounds dumb but is there such thing as script that centres pop-ups to the middle of the screen?

I have the pop-up code I just need the centering if there is such a thing?

Thanks :)

joh6nn
07-02-2002, 04:58 PM
var x = (screen.width - popupWidth) / 2;
var y = (screen.height - popupHeight) / 2;
var myWin = window.open('popup.url');
myWin.moveTo(x, y);


you have to repalce popupWidth and popupHeight with actual numbers.

eak
07-02-2002, 07:20 PM
goto http://www.eak.homeip.net/portfolio/newwindowgen.php