PDA

Click to See Complete Forum and Search --> : no toolbar,ok in NN but in MSIE ???


sebs
Jan 3rd, 2001, 08:29 AM
how to resize and get rid of the toolbar within the same page,
i know that in Netscape it's:
open("", "_top", "toolbar=no");

but it does not work in explorer,
is there a way in explore???

Danial
Jan 4th, 2001, 04:18 PM
Hi Sebs,
The following code works for me both in IE(5.0) and Netscape(4.7). The code gives me a window Resizeable window. I am not sure if this is what you were looking for.

Try this out

Hope this helps

<HTML>
<HEAD>
<TITLE></TITLE>

<script>
function openwin()
{
window.open("","","top=202,left=175,width=450,height=195,buttons=no,scrollbars=no,location=no,menubar=no,resizable=yes, status=no,directories=no,toolbar=no");
}
</script>
</HEAD>

<BODY>

<a href="javascript:openwin()">Open Window</a>

</BODY>
</HTML>