I have made a paint brush type of application using the Canvas Tag . I wanted that when the mouse is on the canvas the Cursor Changes ,
Use the :active CSS pseudo-class to change the cursor when the mouse button is down over the element:
:active
#draw:active { cursor: url(image/pencil.cur); }
Working example: http://jsfiddle.net/nXv63/