Skip to content

Instantly share code, notes, and snippets.

@pavelpower
Last active December 23, 2015 10:29
Show Gist options
  • Save pavelpower/6621722 to your computer and use it in GitHub Desktop.
Save pavelpower/6621722 to your computer and use it in GitHub Desktop.
For Andry, how used jquery in Zendesk
(function($) {
$(function() {
var el = $("#carousel");
var carousel = el.featureCarousel({});
$("#but_prev").click(carousel.prev);
$("#but_pause").click(carousel.pause);
$("#but_start").click(carousel.start);
$("#but_next").click(carousel.next);
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment