pop ups

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

    pop ups

    How do I open a second popup from an already open popup window?

    Paul
  • Lee

    #2
    Re: pop ups

    Paul Moffitt said:[color=blue]
    >
    >How do I open a second popup from an already open popup window?[/color]

    The same way you open a popup window from any other window.
    Maybe you need to clarify your question.

    Comment

    • Grant Wagner

      #3
      Re: pop ups

      Paul Moffitt wrote:
      [color=blue]
      > How do I open a second popup from an already open popup window?
      >
      > Paul[/color]

      The same way you opened the first one:

      PAGE1.HTM:

      <body onload="window. open('PAGE2.HTM ', 'page2',
      'width=400,heig ht=200');">

      PAGE2.HTM:

      <body onload="window. open('PAGE3.HTM ', 'page3', 'width=300,
      height=100');">

      PAGE3.HTM

      <body onload="window. open('PAGE1.HTM ', 'page1',
      'width=500,heig ht=400');">


      I included the circular reference because I figure if you're planning on
      annoying your users with popups, you might as well go all the way and
      deluge them with a never ending series of popups.

      --
      | Grant Wagner <gwagner@agrico reunited.com>

      * Client-side Javascript and Netscape 4 DOM Reference available at:
      *


      * Internet Explorer DOM Reference available at:
      *
      Gain technical skills through documentation and training, earn certifications and connect with the community


      * Netscape 6/7 DOM Reference available at:
      * http://www.mozilla.org/docs/dom/domref/
      * Tips for upgrading JavaScript for Netscape 7 / Mozilla
      * http://www.mozilla.org/docs/web-deve...upgrade_2.html


      Comment

      Working...