Hi Ram,
Add the following click event handler for a parent item:prevar list = $(this).find("[data-role=listview] li");
var arr = [];
list.each(function(e){
arr.push($(list[e]).text());
});/preThen you get an array 'arr' containing texts of a child list.