I'm working on an app that gets an xml file, wraps it to a json object and runs it trough a handlebars templates.
I'm using the jquery $.get() function to get the data from an xml file. However, i get an object (Document) returned, and i need the contents of my xml file as a string.
$.get(appCore.location, function (data){return data //but it's an object}
If you need more code, give a shout, but i'm not doing anything more than a simple $.get().
thx,