Hi guys,
I must periodically download fresh data in “1.xml” files to my application.
When is that made like web page that is OK, but I don’t know how to write path to that file for using in Andriod or iPhone app.
Here is my code:
$.get('1.xml',function(d){
data= [];
$(d).find('li').each(function(){
var inf= $(this).text();
data.push(inf);
});
});
Please somebody… 🙂