Click to See Complete Forum and Search --> : pop up window on link click


chris9902
08-07-2003, 12:35 PM
what is the best pop-up window script so when i press a link a window pop-up with a new page in it

i need the script to work in EVERY broswer and i need to be able to change the options like size, src, resize, etc etc

AdamGundry
08-07-2003, 12:44 PM
i need the script to work in EVERY broswerImpossible. You can make it work in most browsers, but some simply do not allow it, and others have popup blockers. It's a bad idea (and potentially illegal) to use popups, if it makes your site inaccessible.

If you must use popups, use this code:
<a href="page.html" onclick="window.open(this.href, '', 'width=500,height=400,other attributes'); return false">Open page</a>

Adam

chris9902
08-07-2003, 12:49 PM
ok