KF2
KF2

Reputation: 10153

Custom cursor doesn't work in IE9?

I have a web browser control in my form. i used a custom cursor in my CSS code.every things fine in IE8

Css Code

cursor: url(AppDirectiry\Classes\QClasses\ClsDesignHtml\Cursors\arrow.ani);

but it seems dose not work in IE9. any idea?

Edited:

I also used .cur cursor type but it seems also don't work.

Upvotes: 0

Views: 870

Answers (3)

Alexandre Broudin
Alexandre Broudin

Reputation: 13

I think you have to be in Quirks Mode

Upvotes: 1

Ryan McDonough
Ryan McDonough

Reputation: 10012

http://jsfiddle.net/TMjvY/

This works in IE 9 now, just added ,auto onto the CSS.

Upvotes: 1

Ryan McDonough
Ryan McDonough

Reputation: 10012

http://beradrian.wordpress.com/2008/01/08/cross-browser-custom-css-cursors/

http://social.msdn.microsoft.com/Forums/en-US/iewebdevelopment/thread/2f3b25ea-bbc3-487b-8a0c-9850ae9f12ce/

http://jquery.kidsil.net/custom-cursor/

Those three links should help with fixing your issue, also pretty sure that most browsers don't support animated cursors, using a static one may solve your issue.

Upvotes: 3

Related Questions