Skip to content

Instantly share code, notes, and snippets.

@jlazanowski
Created August 22, 2013 02:18
Show Gist options
  • Select an option

  • Save jlazanowski/6302491 to your computer and use it in GitHub Desktop.

Select an option

Save jlazanowski/6302491 to your computer and use it in GitHub Desktop.
Carousel Swipe support with jQuery Mobile
<script>
$(document).ready(function() {
$("#myCarousel").swiperight(function() {
$(this).carousel('prev');
});
$("#myCarousel").swipeleft(function() {
$(this).carousel('next');
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment