I have written a few lines of jQuery to animate a div to the left/right depending on mouse movements
$(".galleryNav").mousemove(function(e){
$("#status").html(e.pageX +', '+e.pageY);
if(e.pageX > 1100 && e.pageX < 1170){
$(".galleryNav").animate({marginLeft:"-60px"},{queue: false, duration: 450});
}
if(e.pageX > 410 && e.pageX < 465){
$(".galleryNav").animate({marginLeft:"10px"},{queue: false, duration: 450});
}
});
it works fine in firefox, but nothing happens in chrome, safari or IE.
Any suggestions?