JavaScript MouseOver events and Anchors

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • clarket

    JavaScript MouseOver events and Anchors

    Just a quick question. Is there anyway of a JavaScript MouseOver event
    acting like an anchor so the mouse pointer changes as if it was an
    anchor.

    Thanks,

    Tony.

  • VK

    #2
    Re: JavaScript MouseOver events and Anchors

    it's not a script, it's CSS:

    <div style="cursor: hand">
    as well as:
    n-resize
    s-resize
    w-resize
    e-resize
    and so on...

    Comment

    • Michael Winter

      #3
      Re: JavaScript MouseOver events and Anchors

      On 02/06/2005 13:54, VK wrote:
      [color=blue]
      > it's not a script, it's CSS:
      >
      > <div style="cursor: hand">[/color]

      The hand value is invalid and will not work with most browsers. The
      correct value is pointer.

      Mike

      --
      Michael Winter
      Replace ".invalid" with ".uk" to reply by e-mail.

      Comment

      Working...