Created
December 21, 2015 07:17
-
-
Save ozknozsrt/acca0f6eb4c2a5837152 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var slider = $('.bxslider').bxSlider({ | |
onSlideNext: doThis, | |
onSlidePrev: doThis | |
}); | |
var slider1 = $('.bxslider1').bxSlider({ | |
onSlideNext: doThis, | |
onSlidePrev: doThis | |
}); | |
function doThis(ele, old, newi){ | |
slider.goToSlide(newi); | |
slider1.goToSlide(newi); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment