Results 1 to 2 of 2

Thread: no toolbar,ok in NN but in MSIE ???

  1. #1

    Thread Starter
    Frenzied Member sebs's Avatar
    Join Date
    Sep 2000
    Location
    Aylmer,Qc
    Posts
    1,606
    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???

  2. #2
    Big D Danial's Avatar
    Join Date
    Jul 2000
    Location
    ASP.Net Forum
    Posts
    2,877
    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
  •  



Click Here to Expand Forum to Full Width