.hover() not working for Chrome
I have the following code:
- scrollhandleEl.hover(
- function () {
- isMouseOver = true;
- },
- function () {
- isMouseOver = false;
- }
- );
...which works fine in Firefox. For some reason it make Chrome stumble and the whole context falls down.
My var scrollHandleEl can be traced as a dom object. var isMouseOver is defined as false further up my code.
Everything looks right, in fact it works in Firefox, but not Chrome. Does anyone know why?