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
If you want to do this in jQuery instead of CSS, you basically follow the same process.
Assuming you have some , you can use the following code:
$("#target").hover(function() { $(this).css('cursor','pointer'); }, function() { $(this).css('cursor','auto'); });
and that should do it.