esapo
02-15-2003, 01:15 PM
Hi!
I need to open a window with all browser's bars hidden. I only want to have the window's frame.
Anyone can help me?
Regards!
rellik
02-15-2003, 01:30 PM
<a href="url" onClick="window.open('URL','windowName',
'width=500,height=500')">Link</a>
i would advise you to use the
onClick="window.open('url','windowName','scrollbars=yes,width=500,height=500')"
to include the scrollbars, and possibly even
<a href="url" onClick="window.open('url','windowName','resizable=yes,scrollbars=yes,width=500,height=500')">
to make it resizable
Charles
02-15-2003, 01:35 PM
That should be:
<a href="http://developer.netscape.com/docs/manuals/js/client/jsref/window.htm#1202731" onclick="window.open(this.href, 'child', 'height=300,width=200'); return false">Window.open()</a>