Forum Moderators: open
I already tried the following javascript:
<script type="text/javascript">
if(navigator.javaEnabled()){
document.write('Java is enabled');
}
else {
document.write('Java is not enabled');
}
</script>
but it's not acurate enough. it only tells if the user has java enabled in their browser options, it does not say if the user has java actually installed and if it's working
Look at the specification for the applet tag for your java applet. You can include text that only displays if java is not installed on the machine<applet ....>
<p>You do not have java installed. <a href="">Click here to get java</a>.
</applet>
that doesn't work. it just displays a white box where the applet should be. At least on firefox it does. I've placed your code (plus an ending </p>) right under the <applet> tag.
[w3.org...]