|
-
Jan 3rd, 2001, 09:29 AM
#1
Thread Starter
Frenzied Member
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???
-
Jan 4th, 2001, 05:18 PM
#2
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
Code:
<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>
[VBF RSS Feed]
There is a great war coming. Are you sure you are on the right side? Atleast I have chosen a side.
If I have been helpful, Please Rate my Post. Thanks.
This post was powered by : 
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|