android - webview is opening browser when I reload the page -
during webview in android.
click button , should goes other url.
problem opens browser when transfer.
let have jsp page button click
<a class="button button4" href="#" onclick="return amtscreensave.file_save(document.forms[0]);">save file</a> var amtscreensave = (function() { return { file_save : function(thisform) { console.log("file_save"); console.log(thisform); thisform.action = "/mobile/filesave.do"; thisform.submit(); }, file_cancel : function(thisform) { console.log(thisform); thisform.action = "/mobile/filecancel.do"; thisform.submit(); } } })();
when activated webview goes browser
how prevent action??
wiki
Comments
Post a Comment