I have a carousel that is linked to a list of items and when you hover over each of those items, it animates the carousel to an appropriate position. The problem occurs if I rapidly hover over a bunch of those list items, and it will trigger the animate to each of those in the order in which they were hovered. What I want is it to automatically adjust to whichever is the most recent hover, so that there is not a bunch of unnecessary movement going on.
Here is the jQuery for the hover:
$('#carProd1 a').hover(function() {
$('#hero-slider ul').animate({
right: '0'
}, 500);
});
$('#carProd2 a').hover(function() {
$('#hero-slider ul').animate({
right: '980'
}, 500);
});
$('#carProd3 a').hover(function() {
$('#hero-slider ul').animate({
right: '1960'
}, 500);
});
$('#carProd4 a').hover(function() {
$('#hero-slider ul').animate({
right: '2940'
}, 500);
});
If I hover over all of those items in rapid succession, it will move to all their positions before stopping.