window.open

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

    window.open

    hi!

    when I'm using the window.open javascript command, a new IE window
    pops up. But when I try doing the same on another computer, the first
    window still acts as the current one, and the new one (opened with
    windows.open) opens, but just lies down on the toolbar. Is there any
    way of setting this property, so that the new window always becomes
    the current one?


    obscurr
  • angelbiatch

    #2
    Re: window.open

    On Wed, 05 Nov 2003 00:41:10 -0800, Obscurr wrote:
    [color=blue]
    > when I'm using the window.open javascript command, a new IE window
    > pops up. But when I try doing the same on another computer, the first
    > window still acts as the current one, and the new one (opened with
    > windows.open) opens, but just lies down on the toolbar. Is there any
    > way of setting this property, so that the new window always becomes
    > the current one?[/color]

    While it's perfectly understandable that you need help and you need it
    fast, it'll really help if you spent just *one* darn minute proof-reading
    your question. So therefore when you say "when I try doing the same on
    another computer" do you mean "another browser window" or "another browser".

    Comment

    • obscurr obscurr

      #3
      Re: window.open


      same OS, same browser, different computer following the same link

      obscurr


      *** Sent via Developersdex http://www.developersdex.com ***
      Don't just participate in USENET...get rewarded for it!

      Comment

      • Thomas 'PointedEars' Lahn

        #4
        Re: window.open

        Obscurr wrote:
        [color=blue]
        > when I'm using the window.open javascript command, a new IE window
        > pops up. But when I try doing the same on another computer, the first
        > window still acts as the current one, and the new one (opened with
        > windows.open) opens, but just lies down on the toolbar. Is there any
        > way of setting this property, so that the new window always becomes
        > the current one?[/color]

        Most certainly you have a shell (configuration) problem on the second
        computer, not a JavaScript problem. And the method is `window.open(.. .)',
        not `windows.open'.


        PointedEars

        Comment

        • Rainer Rosenberger

          #5
          Re: window.open

          I heard, that browser behaviour may strongly vary on browser versions and
          underlying operating systems. What about

          oNewWin = window.open(... );
          oNewWin.focus;

          Regards, Rainer Rosenberger

          "Thomas 'PointedEars' Lahn" <PointedEars@we b.de> schrieb im Newsbeitrag
          news:bop7dr$1gj nvo$5@ID-107532.news.uni-berlin.de...[color=blue]
          > Obscurr wrote:
          >[color=green]
          > > when I'm using the window.open javascript command, a new IE window
          > > pops up. But when I try doing the same on another computer, the first
          > > window still acts as the current one, and the new one (opened with
          > > windows.open) opens, but just lies down on the toolbar. Is there any
          > > way of setting this property, so that the new window always becomes
          > > the current one?[/color]
          >
          > Most certainly you have a shell (configuration) problem on the second
          > computer, not a JavaScript problem. And the method is `window.open(.. .)',
          > not `windows.open'.
          >
          >
          > PointedEars
          >[/color]


          Comment

          Working...