CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2001
    Location
    UK
    Posts
    308

    "Target" values ?

    Target values
    hi,

    in hyperlink tag (<a> ) what are the values for "target" properties.

    ex
    <a href="" target=_new> some text </a>
    <a href="" target=_top> some text </a>

    thanks in adv.
    Venu Bharadwaj
    "Dream it. U can do it!"

  2. #2
    Join Date
    Jan 2002
    Location
    Helsinki, Finland
    Posts
    99
    "_blank" - new window instance
    "_self" - main document
    "_top" - top/first frame
    "_parent" - parent window / parent frame

    target attribute is deprecated in XHTML, so I can't remember the values and their definitions precisely. Check http://www.w3.org HTML 4.01 Specification for attributes for further details.
    Zvona - First aid for client-side web design

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured