Reputation: 21
I am using idangerous vertical swiper of two slides in a mobile app using jquery mobile. I need a vertical scroll bar in second slide as I have grid in it, but both as the slide height is fixed I am unable to achieve it. I have a thought that swiper event and scrolling event will be collided. I have tried in lot of ways but couldn't break this.
Thanks, E. Ramesh Babu
Upvotes: 0
Views: 4450
Reputation: 513
on mobile devices, you should use
e.stopPropagation();
on the element you want to scroll on touchstart event
Upvotes: 0