1
votes

I was wondering if the Zurb Foundation 3 Orbit Slider has any callback events?

I need to have a slider where every X slide, a message is displayed. I was hoping there was a callback when a new slide is shown/changed, so I could bind to that and increment a counter.

2

2 Answers

0
votes

It's in their documentation? http://foundation.zurb.com/docs/orbit.php

afterSlideChange is available to you.

0
votes

use this $("#slidershow").on("orbit:before-slide-change", function(event) {

      });