Above attached my image that fetched it remote server its shown as row in the contents page. I have link in the same xml, i want to tag that link to this row and clicking it us
You either need an anchor tag or you need to bind to the li's click event.
var lineItems; lineItems = $(items).map(function(){ var item = $(this); return '<li><a href="'+item.link+'">'+item.title+'</a></li>' }).get().join(); ul.append(lineItems);