opening a window

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ron Croonenberg

    opening a window

    Hello,

    when I open a new browserwindow with:

    var win = window.open(url , name,
    "location=n o, menubar=no, status=no, toolbar=no, scrollbars=no,
    resizable=no" + " width=" + w +", height=" + h);

    I do get a new window without a locationbar in firefox, but with a
    locationbar in IE.

    Do I need to do something different for IE ?

    Also, is there a minimum width for a window ?
    (I don't seem to be able to get the width less than 240)


    Ron
  • VK

    #2
    Re: opening a window

    On Mar 26, 10:21 pm, Ron Croonenberg <r...@depauw.ed uwrote:
    Hello,
    >
    when I open a new browserwindow with:
    >
    var win = window.open(url , name,
    "location=n o, menubar=no, status=no, toolbar=no, scrollbars=no,
    resizable=no" + " width=" + w +", height=" + h);
    >
    I do get a new window without a locationbar in firefox, but with a
    locationbar in IE.
    >
    Do I need to do something different for IE ?
    The open() method of the Window interface loads a specified resource into a new or existing browsing context (that is, a tab, a window, or an iframe) under a specified name.

    "locationba r - Internet Explorer 7. Specifies whether to display the
    navigation bar. The default is yes.
    Prior to Internet Explorer 7 this feature specifies whether to display
    the address bar."

    The address bar is now implied for the security reason.
    Also, is there a minimum width for a window ?
    (I don't seem to be able to get the width less than 240)
    Same URL. By taking the biggest values, you cannot go below
    250x150


    Comment

    • Ron Croonenberg

      #3
      Re: opening a window

      Meaning you can't get rid of it ?

      VK wrote:
      >
      The address bar is now implied for the security reason.
      >
      >Also, is there a minimum width for a window ?
      >(I don't seem to be able to get the width less than 240)
      >
      Same URL. By taking the biggest values, you cannot go below
      250x150
      >
      >

      Comment

      • Jeremy J Starcher

        #4
        Re: opening a window

        On Wed, 26 Mar 2008 19:26:02 -0400, Ron Croonenberg wrote:

        [in reference to the address bar on newly opened windows and IE7]
        Meaning you can't get rid of it ?
        Correct. This is a much-needed feature for anti-phishing.

        Comment

        Working...