I am making an web application.
In my web application, I want to change the default cursor to Custom cursor.
For that i am applying following code in my XHTML Page in head element.
<html>
<head>
<style type="text/css">
body{
cursor: url('images/normal.ani')
}
</style>
</head>
<body>
<p> Hello World</p>
</body>
Now, This code is working fine and changing the default cursor to my custom cursor in Internet Explorer 7.0.
But the same code doesn’t working in Mozilla Firefox (15.0.1) and Google Chrome(21.0).
Please Help me out ….
Thank u in advance
Firefox requires a second non-url argument such as
There is a good reference at Quirksmode CSS2 – Cursor Styles