how can I change a mouse pointer?

for instance how can I indicate a hover on any html element?

Search for: for instance how can I indicate a hover on any html element?

javascript controlling mouse pointer image

Search for: javascript controlling mouse pointer image

looks like there is a css property


<style>
.hover_element
{
  cursor:pointer;
}
</style>
<body>
<div class="hover_element">
<p>Hello there</p>
</div>
</body>