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: http://www.mydomain.com
In mydomain.com I have:
<script src="js/jquery_1.4.2_min.js"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
alert("Hii!!!!");
});
</script>
If I visit mydomain from the browser, the alert shows fine. But If I visit from my native application, it doesn’t show. What can I do?
Is JavaScript enabled in your webview…?