Custom cursor
HTML
<div>Roll over to see custom cursor</div>
CSS
div{
width: 100px;
height: 100px;
background: #dddddd;
}
JavaScript
$(document).ready(function(){
console.log($("body").length)
$("div").css('cursor','url(https://i.imgur.com/HsNSz9x.png),auto');
});