Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript An issue on carousel slider hover Re: An issue on carousel slider hover

#127542
CrocoDillon
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);
});