Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?)

share|improve this question
1  
That seems to be the accepted way to do it and it does work. What happens when "it doesn't work?" Any errors in the console? The only thing I've had to do was change to the $.ajax function and set the data type as HTML. – codemonkey Jul 19 '12 at 10:48
I'll look in to that. It just doesn't appear to return anything (the $.get) on the device itself. – Meep3D Jul 19 '12 at 10:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.