Alexander Hein
Alexander Hein

Reputation: 990

Owl carousel : change slide on hover dots

I´m using dots to navigate the owl carousel 2. I like to change the navigation from click to hover. So when I hover the second dot, the carousel jumps to the second slide. Couldn't find something like this in the documentation.

Are there any easy solutions for this?

Upvotes: 0

Views: 3740

Answers (1)

Lars Ebert-Harlaar
Lars Ebert-Harlaar

Reputation: 3537

The easiest solution would be something like this:

$('.own-carousel .dot').hover(function() {
    $(this).click();
}, function() {});

This simply triggers the click events on hover. I am not sure about the classes own-carousel and dot, better check those.

Upvotes: 2

Related Questions