I have implemented a phone gap app for android using jQuery Mobile and java script.
in my app
I have added a list view dynamically and used search filter attribute (true).
Now i want to popup an alert for every search.
That alert sh’d shows the count of the visible list items for entering of every character.
how?
Thnaks in advance
Following should give you the count of currently visible
lis in alistviewwithid=myList$('#myList li').size() - $('#myList li.ui-screen-hidden').size()http://jsfiddle.net/nirmaljpatel/Vy7Vu/