Change the mouse pointer using JavaScript
JavaScript is pretty good at manipulating CSS: document.body.style.cursor = *cursor-url*; //OR var elementToChange = document.getElementsByTagName(“body”)[0]; elementToChange.style.cursor = “url(‘cursor url with protocol’), auto”; or with jQuery: $(“html”).css(“cursor: url(‘cursor url with protocol’), auto”); Firefox will not work unless you specify a default cursor after the imaged one! other cursor keywords Also remember that IE6 only supports .cur … Read more