I am trying to include a template file in a phonegap app using ajax with jquery, using the following code:
$.get('templates/' + tpl_file, function (template) {
// Do stuff
});
It works fine in a normal browser but doesn't appear to work in the simulator. What am I missing? (and is there a better way of doing includes?)