If I hover the mouse over a div the mouse cursor will be changed to the cursor like that in HTML anchor.
div
How can I do this? Do I need Javascript or it\'s po
I think :hover was missing in above answers. So following would do the needful.(if css was required)
:hover
#myDiv:hover { cursor: pointer; }