0

I'm using css/js to change the class of an element which the pointer is hoving over. The class determines the custom cursor image.

Unfortunately, it seems as if the cursor does not update in Chrome unless I physically move the mouse. Unfortunately the app is primarily used through the keyboard, however the cursor image is pretty important.

Any way around this?

Thanks.

Mark
  • 32,293
  • 33
  • 107
  • 137

1 Answers1

2

This is actually a documented bug in Chrome and Safari. See this question on StackOverflow:

Getting the browser cursor from "wait" to "auto" without the user moving the mouse

I think you're out of luck for now, sorry

Community
  • 1
  • 1
Mala
  • 14,178
  • 25
  • 88
  • 119
  • Thanks. Somehow I thought that was the correct behavior that I should work around. Did not occur to me that others might interpret it as a bug. Of course now I feel that that's a bug! Thanks. – Mark Jul 04 '10 at 04:46