I know that how to call a Javascript function from Android's webview. To call javascript function I've to use the following syntax.
WebView.loadUrl("javascript:my_javascript_func();");
But if I try to call a jquery function defined in $(document).ready(function(){}); area then it through "Uncaught ReferenceErro: my_jquery_func is not defined at null:1"
Where my_jquery_func() is the name of my jquery function.
I've searched enough but could not get any example of calling jQuery function from Android by using webview.
I can see a similar post here: Call jQuery function in Android's WebView from Java?
but it couldn't help me.
Thanks,