edit: dup thread: http://www.genuitec.com/support-genuitec/viewtopic.php?p=17983#p17983
my external xml file:
<title>My Title</title>
<link>My Link</link>
<thumbnail>My image</thumbnail>
in mobione i have
var $xml = $(data);
$xml.find("item").each(function() {
var $this = $(this),
item = {
title: $this.find("title").text(),
image: $this.find("thumbnail").text()
}
list_items.push(item);
});
problem
Ok right now the script is only showing the <thumbnail> working
It is not reading the text <title> Not working
the other issue is that it is not showing or opening the <link> Not Working
Appreciate your help Thanks