I\'m using the awesome CarouFredSel JQuery carousel plugin which includes features for integrating the JQuery TouchSwipe library for handheld devices as well.
The caro
You can use below function to enable click after swipe.
`$('.class').swipe({ swipe: function(event, direction, distance, duration, fingerCount) {}, click: function(event, target) { $(target).click(); }, threshold: 75 });`
https://stackoverflow.com/a/11919170/3223427