Android Ics 4.0.3 Local Ajax Doesn't Work
I have an android app with Webview and uses JQuery in the webview The JS in the webview fetches a local file to load templates using the following code: $.get('file:///android_asse
Solution 1:
I found a solution/workaround for this problem (that doesn't make sense at all) The solution is simply: the locally loaded file must not contain single quotes, I don't know why but changing all the single quotes to double quotes solved the problem.
- Also change cache: false to cache: true or just remove it
Post a Comment for "Android Ics 4.0.3 Local Ajax Doesn't Work"