I have designed a .png image that I want to use as a custom cursor for a particular element with the class "next".
Here is the code I am using, but it doesn't seem to be working. Is there anything important that I may have overlooked?
$('.next').hover
(
function(e)
{
//$(this).css('cursor','all-scroll'); //WORKS!
$(this).css('cursor','url(img/right-pointer.png)');
});