i want to disable copy link location and link status in the browser bottom

Discussion in 'JavaScript' started by abdo629, Aug 23, 2011.

  1. #1
    i want to disable copy link location and link status in the browser bottom for my links

    <a class='button' id="cont" style="display: none; cursor:pointer; cursor:hand" href='' target="_blank" onMouseOver="window.status='';return true" onMouseOut="window.status=''" ><span>Click Here To Go</span></a>
     
    Last edited: Aug 23, 2011
    abdo629, Aug 23, 2011 IP
  2. [GotHost] James

    [GotHost] James Guest

    Messages:
    17
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I doubt there's an easy way, if a way at all, to disable just the 'copy link location' function. You could disable right click, but that'll annoy users and reduce functionality.
    Also, no matter what you do, someone can view the source and get the link that way.
     
    [GotHost] James, Aug 24, 2011 IP
  3. JohnnySchultz

    JohnnySchultz Peon

    Messages:
    277
    Likes Received:
    4
    Best Answers:
    7
    Trophy Points:
    0
    #3
    to add to [GotHost] James reply,

    I can just disable javascript on my browser and i can still retrieve the url from your link or i can use firebug with that..
     
    JohnnySchultz, Aug 24, 2011 IP
  4. Rukbat

    Rukbat Well-Known Member

    Messages:
    2,908
    Likes Received:
    37
    Best Answers:
    51
    Trophy Points:
    125
    #4
    If I understand correctly, you want underlined text that says Click Here To Go, but you don't want anything to happen if the user clicks on it. Aside from the fact that you'll get your users angry (just delete the link entirely), you can change the whole anchor to just the text, underline it and make it blue. Text isn't a link even if it looks like one.
     
    Rukbat, Aug 24, 2011 IP