<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.9.1.js'></script>
<style type='text/css'>
#cursor {
width: 200px;
height: 200px;
border: 1px solid black;
}
</style>
<script type='text/javascript'>
$(window).load(function(){
$('#cursor').css(
'cursor','url(http://www.w3cschool.cn/style/download.png),default'
);
});
</script>
</head>
<body>
<div id="cursor"></div>
</body>
</html>