I am about to start developing my first PhoneGap application (iOS and Android). Had a doubt regarding how it works.
From my understanding
- It just loads up the index.html file
- from which the page is controlled by any javascript we write in it
- The JS will manipulate the DOM and give it an responsive application feel
- Data can be pushed or pulled from an outside server, via AJAX API calls
I was wondering if while attempting to make these AJAX calls, would there be the cross domain issue ? Or does it work completely differently.
Thanks.