How to Hide the url from staus bar and properties(right click properties)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • srinivasyadavkota
    New Member
    • Sep 2007
    • 8

    How to Hide the url from staus bar and properties(right click properties)

    Hi Experts here,
    Pls help me.

    I have written the html code like this:


    [HTML]<a href="http://mypage.com/docfiles" target="_blank" > Click </a>[/HTML]


    But the problem is when ever the user click the click option complete url is displaying in two ways

    1)on the buttom of the status bar

    2)Right Click on the option open the properties than also we are getting the complete Url.


    But we don't want to see the complete Url,How to hide the Url.

    Please give me solution I am struggling alot.

    Thanks and Regards,
    Srinivas yadav.
    Last edited by gits; Feb 21 '08, 03:16 PM. Reason: added code tags
  • gits
    Recognized Expert Moderator Expert
    • May 2007
    • 5390

    #2
    hi ...

    try this:

    [HTML]<a href="#" onclick="window .open('http://mypage.com/docfiles', '_blank');"> Click </a>[/HTML]
    kind regards

    Comment

    Working...