views:

49

answers:

1

I'm working on a mobile web-app using HTML5 and sencha touch. My next step is to add some native capability using phonegap. My app uses Ajax requests to retrieve data from a server component and i am not sure if ajax will work within phonegap packed apps? Should i use JSONP instead?

+1  A: 

No need for JSONP. Since the html files are local files, there is no cross domain restriction.

Shazron