Click to See Complete Forum and Search --> : help me - javascript


bergman
04-10-2003, 04:09 PM
Help me please!

Is there anyone out there who has a javascript that excludes all the menys in Explorer so all that is left is the blue bar on top.

I'll be very gratefull i there is anyone.

Thank's

havik
04-10-2003, 04:14 PM
You mean opening a window without all that?

try this:
window.open('URL', 'name', 'features')

URL: is the URL of the page, it can be blank if needed

NAME: of the window so that you may access it later if need be

FEATURES:
this is what your asking for

toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no

Try this link for more features:
http://www.devguru.com/technologies/ecmascript/quickref/win_open.html

Havik