Popup help

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
mzfp2
Forum Contributor
Posts: 137
Joined: Mon Nov 11, 2002 9:44 am
Location: UK
Contact:

Popup help

Post by mzfp2 »

I'm trying to open up a pop-up window using the window.open method in JavaScript. However my pop always seems to have a address bar, buttons etc.

I require my pop-up to be a small window with no additional browser features such as address bar menu etc.

My aim is to provid3e users with a dialog box to select extra emotes from

Please help !


http://www.alljammin.com
Gen-ik
DevNet Resident
Posts: 1059
Joined: Mon Aug 12, 2002 7:08 pm
Location: London. UK.

Post by Gen-ik »

Code: Select all

window.open("page.php","","menubar=no, location=no, toolbar=no, status=no, resizeable=no, left=0, top=0, width=300, height=200");
Post Reply