Skip to content
This repository has been archived by the owner on Jul 19, 2020. It is now read-only.

iPhone iPad Swipe

Ephigenia edited this page Sep 14, 2010 · 3 revisions
// create slideshow instance
var mySlideShow = $('#SlideShow1').slideShow();

// init swipe for iPhone/iPad
$('.swipe').swipe({
	swipeLeft: function() {
		mySlideShow.prev();
	},
	swipeRight: function() {
		mySlideShow.next();
	}
});
Clone this wiki locally