The problem is what is hover()mapped to mouseoverand `mouseleave), and not to the events you are using.
$("...").live("hover", function(e) {
...
});
is equivalent to:
$("...").live("mouseover mouseleave", function(e) {
...
});
If you want an event mousemove, you can also use:
$("...").live("hover mousemove", function(e) {
...
});
source
share