If you want the cursor to be the cursor of your choice, you can use the css cursor property as above, but with the URL value:
$(this).css('cursor', 'url(/path/to/image),auto');
or to everyone inside the body:
$('body').css('cursor', 'url(/path/to/image),auto');
As far as I know, this will not work in Opera.
Rick
source share