I am using jQuery-mobile for an html based mobile app.
I use jQuery-mobile to horizontally scroll through pages with swipe.
One of my pages has a horizontally long div with some animated content. I need only the content of this div to scroll to the side. But when I swipe over the div, jQuery-mobile scrolls to the next page.
If the user swipes over any other part of the page, this is the desired behavior, but when a swipe occurs on that particular div, I need only the content to scroll.
I tried using iScrollView as suggested here and css overflow as suggested here but in each case, jQuery-mobile scrolls the page.
Is there way to only scroll the content of a certain div in a jQuery-mobile 'page' and not the page itself?