How to supress "location" in window

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Claus Mygind
    Contributor
    • Mar 2008
    • 571

    How to supress "location" in window

    I just switched to FireFox 3 and I noticed that all my custom popup windows now contain the location "Address" box even though this is not one of the features of the window. see sample code below. Does anybody know how to suppress this?

    Code:
    function getSearchWindow() {
    testWindow =window.open('testSearch.html',
    'searchWindow',
    'scrollbars,resizable,height=200,width=400');
    testWindow.focus(); 
    return false;               
     }
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    In Firefox 3, it defaults to displaying the location bar. Each individual user can decide to change it for himself. See this link (Firefox3 Note).

    Comment

    • Claus Mygind
      Contributor
      • Mar 2008
      • 571

      #3
      Thank you so much. Been working on this all day. Works like a charm

      Comment

      • acoder
        Recognized Expert MVP
        • Nov 2006
        • 16032

        #4
        You're welcome :)

        Comment

        Working...