change mouse pointer as hand symbol

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shanmugamit
    New Member
    • Feb 2008
    • 45

    #1

    change mouse pointer as hand symbol

    hi,


    i want to change mouse pointer to hand symbol over the select button.
    but i my code not work...
    Code:
    c
    function fnover(id)
    {
    document.getElementById("id").style.cursor="hand";
    }
  • hsriat
    Recognized Expert Top Contributor
    • Jan 2008
    • 1653

    #2
    [CODE=javascript]function fnover(id)
    {
    document.getEle mentById("id"). style.cursor="p ointer";
    }[/CODE]

    Comment

    • acoder
      Recognized Expert MVP
      • Nov 2006
      • 16032

      #3
      Don't forget that "id" should be id (the passed argument).

      Comment

      Working...