JQuery hover problem
- by tim
Hello,
Im using jquery hover method to call a function as follows
$(<some_element>).hover(function(){animate("next",true);},function(){});
But,the animate function is called only when the mouse enters the element. I want it to keep getting called as long as the mouse is over the element also.
Any way to achieve this ?
Thank You.