jquery - I am trying to swipe my images in an image gallery.i am trying to do this on this site.( http://klaret.dk/ ) But my swipe function doesnt work -


i trying swipe images in image gallery.i trying on site.( http://klaret.dk/ ) swipe function doesnt work. here code using.i have added jquery library aswell jquery mobile ui library. still doesnt work

$(document).on("pagecreate", function(){             alert("here");             //alert($('.fs_gallery_wrapper').html())             $(".fs_slide").on("swipe", function() {                  alert("hello");              });          }); 

i did , worked. awesome.

<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> <script type="text/javascript">     $(document).on("swipeleft",'.fs_gallery_wrapper', function(){         //alert("here");       nextslide();      });     $(document).on("swiperight",'.fs_gallery_wrapper', function(){         //alert("here");       prevslide();     }); </script> 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -