How can I assign color to the mouse cursor in a web-page?
Can anyone suggest me a way to do it using any of the technologies e.g. HTML, CSS, JavaScript?
Use an image along with CSS cursor
property, I don't see any need of JavaScript heere...
div {
cursor: url(YOUR_IMAGE_URL), auto;
}
As commented, I've used auto
which is nothing but default cursor
just incase your image fails to load, exactly like we declare multiple font families.