First of all, I use jquery-1.7.1.min.js and jquery.mobile-1.2.0.min.js.
I have a jquery mobile list like this
<ul id="myList" data-role="listview">
<li><a href="#">...</a></li>
<li><a href="#">...</a></li>
...
</ul>
As I want to build a pagination for this list via swiperight and swipeleft over all list items I am wondering how to implement this?
I used...
$("#ulList").swiperight(function () {
// pagination logic
});
but this is not working, except I swipe exactly between the list items :)
Is there any possibility to overlay a div or something, so that I can click my list items AND have a swipe right and left area over all list items???
thanks for your help!
regards from germany