I have a question about hovering.
$(".hover li img").mouseenter(function() {
$(".overlay").animate({
left: pixels+"px"
});
});
The overlay class is a transparent box around the image, with a red border.
I want the border to move when hovering over an image. This is not a problem for me. The issue arises when I hover over multiple images quickly. The overlay class stops briefly at each image.
My question is: How can I prevent the overlay class from stopping at each image when moving the mouse over them quickly? I would appreciate any help or suggestions. Thank you.