I recently updated my app from Cordova 1.7.0 to 2.1.0 as well as my xCode to 4.5. The app uses a lot of Ajax requests for getting information from the server. I am using jquery as to make the ajax requests. At the beginning of my onDeviceReady function I have $.ajaxSetup({cache:false}), as well as cache:false in the actual ajax calls. My app seems to still be holding that data. If I uninstall it and reinstall it gets the correct information 1 time and then just repeats that every time. Is there a setting I am missing in either my calls or the xCode setup that would prevent this? (btw the server also has a no-cache header)Thanks