Hi guys,
I have a Phonegap app with Jquery mobile in the AppStore.
I recently updated my phone to IOS 9 and the scroll stop worked. Im also having problem with the navigation inside the app. The app random redirect the user to the previous page when the user press a link or sometimes when the app makes ajax calls.
I know that IOS 9 have a lots of bugs already but i really need to fix this problem, because the app is actually in production and the users are reporting the same problem.
I found some problems related to Safari in IOS 9 but i had no luck with the scroll problem.
In IOS 8 and below the app work fine.
Thank you very much in advance for any help.
Edit: Sorry for the vague description about the problem, here is more info in order to try to figure out what could be the real problem:
More info about the proyect:
com.phonegap.plugins.barcodescanner 2.2.0 "BarcodeScanner"
com.phonegap.plugins.facebookconnect 0.11.0 "Facebook Connect"
com.phonegap.plugins.oauthio 0.1.1 "OAuth.io"
org.apache.cordova.dialogs 0.3.0 "Notification"
org.apache.cordova.geolocation 0.3.12 "Geolocation"
org.apache.cordova.inappbrowser 0.6.0 "InAppBrowser"
org.apache.cordova.network-information 0.2.15 "Network Information"
The plugins are working fine.
I already tried the hashListeningEnbale = false trick
Some users say that adding this code between jquery and jquery mobile import can fix the navigation problem, but i had any luck:
<script type="text/javascript">
$(document).bind("mobileinit", function(){
$.mobile.hashListeningEnabled = false;
});
</script>
I also add data-history= false to all the pages but still no luck.
Here is a example code of one of the pages of my apps. There ir more than 10.000 line of codes and having no clue about the problem is a little bit hard to give some example code related to the real problem.
Basically is a page with a header, content and a footer.