I have a normal HTML/Javascript site witch is working in all browser perfectly. I registered now that, if someone is visiting my site via android-webview, javascript is disabled by default. On my page I have a pricelist witch will be open by adding a class with javascript. Thats means if my site is visited with webview the pricelist is not shown. Is there any solution to enable javascript in this case? I found something like this:
<WebView javaScriptEnabled={true}/>
or:
webSettings.setJavaScriptEnabled(true);
or:
webView.loadDataWithBaseURL(baseUrl, data, mimeType, encoding, historyUrl);
But I dont have any glue is this right and were to place it it my code.
And: Is there something like is webview in window