I am making pull to refresh listview in phonegap Project. But i also do no want to use jquery mobile. Please suggest me how i can achieve this goal.
Asked
Active
Viewed 2,056 times
1 Answers
0
Use iScroll. It supports pull-to-refresh dynamic loading of content and is not dependent on jQuery Mobile.

DaveAlden
- 30,083
- 11
- 93
- 155
-
I used it but it makes disable all clicks on screen. – Deepika Lalra Jul 15 '13 at 06:16
-
Make sure the clickable elements have a higher z-index than the iScroll scroller, e.g. `.iscroll-scroller{ z-index: 1;} .clickable-stuff{ z-index: 2;}` Also have a look at the answers to [this question](http://stackoverflow.com/questions/8345644/iscroll-wont-let-items-be-clicked) – DaveAlden Jul 15 '13 at 08:44