link open in window

Discussion in 'HTML & Website Design' started by Audiomad, May 1, 2007.

  1. #1
    how do I make a link open in the same window? plz help
     
    Audiomad, May 1, 2007 IP
  2. dj_gie

    dj_gie Peon

    Messages:
    327
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Depends. You can use the 'target' attribute within the anchor to give the value you want. i.e

    < a href="" target="_parent">text link</a>
    HTML:
    If you see in the target, i've used parent. Here is all the available options:


    _blank - the target URL will open in a new window
    _self - the target URL will open in the same frame as it was clicked
    _parent - the target URL will open in the parent frameset
    _top - the target URL will open in the full body of the window

    Self should be fine depending if you use frames.
     
    dj_gie, May 1, 2007 IP