I\'m making a webapp and I\'m using jQuery.
I\'ve made a simple android application with a WebView in it, and I load my url: www.mydomain.com
In mydomain.com
Correct sequence-
webview.getSettings().setJavaScriptEnabled(true); webview.loadUrl("file:///android_asset/xxx.html");
By mistake dont put your invocation sequence go wrong like below
webview.loadUrl("file:///android_asset/xxx.html"); webview.getSettings().setJavaScriptEnabled(true);