Stack Overflow Answer - http://stackoverflow.com/questions/4437204
HTML
<!-- don't delete, answer to stackoverflow question -->
<!-- http://stackoverflow.com/questions/4437204 -->
CSS
html, body {
background-color: red;
height: 100%;
width: 100%;
}
JavaScript
$('body').mouseover(function(){
$(this).css({cursor: 'none'});
});