Automatic new window from frame

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

    Automatic new window from frame


    I can use a frame tag to open up another src file
    but is it possible to put that src file document (target)
    into a separate window besides just another frame ? If so how ?

    Jon

  • MH

    #2
    Re: Automatic new window from frame

    > I can use a frame tag to open up another src file[color=blue]
    > but is it possible to put that src file document (target)
    > into a separate window besides just another frame ? If so how ?[/color]

    Maybe you mean to want to open a page in new window of its own?
    like this; <a href=http://......" target="_blank" >new window</a>

    --------
    MH



    Comment

    • Jon

      #3
      Re: Automatic new window from frame

      Thank you MH...

      Yes, except I want it to pop up automatically from
      a frame tag.. Something like..

      <frame name="_blank" noresize src="http://.../page.html">

      Basically so the user doesn't actually have to click something.
      Is that possible ??

      Jon
      [color=blue][color=green]
      > > I can use a frame tag to open up another src file
      > > but is it possible to put that src file document (target)
      > > into a separate window besides just another frame ? If so how ?[/color]
      >
      > Maybe you mean to want to open a page in new window of its own?
      > like this; <a href=http://......" target="_blank" >new window</a>
      >
      > --------
      > MH[/color]

      Comment

      • MH

        #4
        Re: Automatic new window from frame

        > Yes, except I want it to pop up automatically from[color=blue]
        > a frame tag.. Something like..
        > <frame name="_blank" noresize src="http://.../page.html">
        > Basically so the user doesn't actually have to click something.
        > Is that possible ??[/color]

        The only way I know to automatically start another page is with 'refresh' in
        the <head> section, like

        <META HTTP-EQUIV="REFRESH" CONTENT="5; URL=http://......../page.htm">

        this will automatically open 'page.htm' after 5 seconds, in the same window.

        -------
        MH



        Comment

        • Jon

          #5
          Re: Automatic new window from frame

          > > Yes, except I want it to pop up automatically from[color=blue][color=green]
          > > a frame tag.. Something like..
          > > <frame name="_blank" noresize src="http://.../page.html">
          > > Basically so the user doesn't actually have to click something.
          > > Is that possible ??[/color]
          >
          > The only way I know to automatically start another page is with 'refresh' in
          > the <head> section, like
          >
          > <META HTTP-EQUIV="REFRESH" CONTENT="5; URL=http://......../page.htm">
          >
          > this will automatically open 'page.htm' after 5 seconds, in the same window.
          >
          >[/color]

          Thanks again MH... Not possible to open in a new page ?

          Jon


          Comment

          Working...