To change the cursor when hovering a listitem you should use CSS3.
Sample List
<ul> <li>listitem1</li> <li>listitem2</li> <li>listitem3</li> <li>listitem4</li> <li>listitem5</li> <li>listitem6</li> </ul>
Sample CSS
li { cursor: pointer; }
see also CSS cursor Property at W3Schools
RT @CodeSnippetsNET: How to change the cursor when hovering a Listitem http://t.co/1LTmBFWGqz #html #css