make the links open in a new window..

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

    make the links open in a new window..

    I am using an iframe to feed an RSS but when i click on the link on the
    iframe it opens the link on the iframe instead of opening it on the
    parent window or a new window.. the code is in php.. its something like
    this.. $item->source = $SERVER_URL; how can i make the links open in a
    new window or the parent window and not on the iframe ..
    Thanks
    Kelli...

  • Brent Palmer

    #2
    Re: make the links open in a new window..

    Hello.
    Have you tried javascript to open the new window?
    <a href="javascrip t:void(window.o pen('http://www.website.com ', 'name',
    'location=yes, menubar=yes, status=no,toolb ar=yes, scrollbars=yes,
    resizable=yes') )" title="New Page">New Page</a>

    Brent Palmer.





    "kelli" <chhangru@gmail .com> wrote in message
    news:1110529143 .900196.148670@ l41g2000cwc.goo glegroups.com.. .[color=blue]
    >I am using an iframe to feed an RSS but when i click on the link on the
    > iframe it opens the link on the iframe instead of opening it on the
    > parent window or a new window.. the code is in php.. its something like
    > this.. $item->source = $SERVER_URL; how can i make the links open in a
    > new window or the parent window and not on the iframe ..
    > Thanks
    > Kelli...
    >[/color]


    Comment

    • chernyshevsky@hotmail.com

      #3
      Re: make the links open in a new window..

      target="_top", target="_blank"

      Comment

      Working...