Home › Forums › JavaScript › An issue on carousel slider hover › Re: An issue on carousel slider hover
March 8, 2013 at 7:47 pm
#127542
Participant
Try to add the mouseleave (second) event handler to carousel.js line 407:
.bind(‘mouseenter click touchstart’, function() {
clearInterval(auto);
})
.bind(‘mouseleave’, function() {
auto = setInterval(autoAdvance, speed);
});