TouchSwipe plugin

TouchSwipe plugin

I hope it's ok I can't supply a url, b/c this is very simple...

I love jQuery TouchSwipe plugin

I implemented it very easily, following documentation on this page (link to the docs near bottom of page doesn't work.. browser just hangs...)

this works perfectly....

  1. $('#photoImg').swipe({
  2.   swipeLeft:function(e) {
  3.     window.location = 'photos.php?pn=' + phNoNext;
  4.   }
  5. });
   
but of course nothing is perfect.....;~))  the following doesn't work... nothing happens...

  1. $('#photoImg').swipe({
  2.   swipeRight:function(e) {
  3.     window.location = 'photos.php?pn=' + phNoPrev;
  4.   }
  5. });


too bad.. I was so happy the swipeLeft one works so well...;-)

on the swipeRight I get the following in console:

  1. Ignored attempt to cancel a touchend event with cancelable=false, for example because scrolling is in progress and cannot be interrupted.

would appreciate some advice and suggestions.. thank you...



thank you...