I've created a .png file I'd like to use as a custom cursor on a specific element with class "next".
I'm using this code to no avail. Anything I'm missing?
$('.next').hover
(
function(e)
{
//$(this).css('cursor','all-scroll'); //WORKS!
$(this).css('cursor','url(img/right-pointer.png)');
});