Rufusmedia
8/26/2014 - 8:35 PM

Simple Touch Swipe Behavior From http://labs.rampinteractive.co.uk/touchSwipe/demos/Basic_swipe.html

    $(function() {      
      //Enable swiping...
      $("#test").swipe( {
        //Generic swipe handler for all directions
        swipe:function(event, direction, distance, duration, fingerCount, fingerData) {
          $(this).text("You swiped " + direction );  
        },
        //Default is 75px, set to 0 for demo so any distance triggers swipe
         threshold:0
      });
    });