Possible Duplicate:
Make mouse pointer a hand when hover over <li> element?
Basically, I am using a javascript library that makes tables sortable by clicking on the table head. I have had no experience with javascript myself.The only problem is, clicking on the table is not the most intuitive thing to do. Therefore, I want to make it look like a link. I have made it underlined, but it is still not particularly obvious because when you hover over it, the mouse does not change how it looks. I would like to change the mouse image to the hand that you get when you hover over a link. Currently, the ones which I want to look like links are just a blank (no href). Is there any way to easily do this, would it involve javascript, and does anyone know how?
The issue is indeed solvable by using javascript but instead you should turn to the power of CSS.
If the element you are actually wanting to make on hover change cursor is indeed a
<a>you are better off adding the attributehrefwith a value of "#" to make the browser handle the cursor change automatically.Example snippet (using CSS)
jsFiddle Live Example