simple code question

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • phukit
    Registered User
    • Nov 2001
    • 10

    #1

    simple code question

    Im masking my links using this code:

    onMouseOver="status=''; return true;"

    My question is, when I move my cursor over the link it shows "click here", but when I remove my cursor from the link it still says "click here" in the status bar. How do I adjust the code so it wont say anything and will just go blank when the cursor isnt over the link?

    [This message has been edited by phukit (edited 12-28-2001).]
  • blunt
    Registered User
    • Aug 2001
    • 96

    #2
    add onmouseout="self.status=' '; return true;" to the tag.
    to block right clicks you can also add onfocus="self.status=' '; return true;"

    [This message has been edited by blunt (edited 12-29-2001).]

    Comment

    Working...