While exploring, I stumbled upon some CSS attributes that can turn the cursor into a hand:
- For IE - style="cursor: hand;"
- For NS6/IE6 - style="cursor: pointer;"
- Cross Browser - style="cursor: pointer; cursor: hand;"
Interestingly, I noticed that Stack Overflow utilizes "cursor: pointer" in its CSS which seems to work on IE as well.
Now I'm curious, what is the best way to implement this CSS item in a browser-independent manner?