Guest User

Untitled

a guest
Jan 17th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. //Changing the default prev next buttons to ours
  2.  
  3. var owl=$(".owl-carousel");
  4. owl.owlCarousel();
  5.  
  6. //$(".next") - our button name
  7.  
  8. $(".next").click(function(){
  9. owl.trigger("next.owl.carousel");
  10. });
  11. $(".prev").click(function(){
  12. owl.trigger("prev.owl.carousel");
  13. });
Add Comment
Please, Sign In to add comment