Retrieve xml data using phonegap

GRIMPMASTER

New Member
I am building an android app using phonegap. I want to retrieve xml data from my host server to android app. My XML File: http://www.guitarmaddy.com/index.php?option=com_dmxmlexport&catid=8 . I want to get all tag content and display in phonegap app.Previously I used:$(document).ready(function(){\[code\] $.ajax({ type: "GET", url: "www.guitarmaddy.com/index.php?option=com_dmxmlexport&catid=8", dataType: "xml", success: function(xml) { alert("reading xml"); }});});\[/code\]but it is not working.. alert message is not coming..Please suggest me links, I want to know the basics of retrieving xml data.
 
Back
Top