I'm using Java Deployment Script on my web application using this code.
<script src="https://www.java.com/js/deployJava.js"></script>
<script>
var attributes = {
code:'applet.class', width:0, height:0,separate_jvm: false,id:'applet'} ;
var parameters = {jnlp_href: 'jnlp.jnlp'} ;
deployJava.runApplet(attributes, parameters, '1.7');
</script>
The issue occurs when I try to view this page on Mobile Browser.
deployJava.runapplet checks for current installed on the browser/System, but as mobile browsers don't have hava(ios and android) it redirects it to java install page, which also informs that there is not java available.
So the user is not able to view the page entirely.
I want some way to disable java check on mobile browsers.