Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<p id="demo">Mouse over this text before and after you have clicked the button below!</p>
<button type="button" onclick="myFunction()">Change cursor</button>
 
<script>
function myFunction() {
  document.getElementById("demo").style.cursor = "pointer";
}
</script>
</body>
</html>