Thanks for answers. I finally started to work. Here is how I did it:
<html> <head> <script type="text/javascript"> function changeToCursor1(){ document.body.style.cursor="url('cursor1.ani'),url('cursor1.cur'), default"; } function changeToCursor2(){ document.body.style.cursor="url('cursor2.ani'),url('cursor2.cur'), default"; } </script> </head> <body> <form> <input type="button" value="Change to cursor 1" onclick="changeToCursor1()" /><br> <input type="button" value="Change to cursor 2" onclick="changeToCursor2()" /> </form> </body>
I found out that in order to work in Firefox you have to go through at least two cursor options, for example. cursor = "url ('cursor1.cur'), ββby default" Or else it wonβt work. In addition, in Firefox it does not work with ani-cursors, but only cur. That is why I put cur after ani. Ani will appear in IE, cur in Firefox.
Does anyone know if it is possible to change the cursor in IE without warning Active-X, and the user should accept?
Clox
source share