Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q286 In Netscape Navigator you can detect if Java is enabled with navigator.javaEnabled how can you do this in Internet Explorer?

You are here: irt.org | FAQ | JavaScript | Java | Q286 [ previous next ]

Try this:

<APPLET CODE="whatever" WIDTH="400" HEIGHT="100">

<TABLE BORDER="0" CELLSPACING="4" WIDTH="450" HEIGHT="100" BGCOLOR="#FFFFCC">
<TR><TD CLASS="center">Sorry no Java support</TR>
</TABLE>

<SCRIPT LANGUAGE="JavaScript"><!--
alert('Sorry no Java support');
//--></SCRIPT>

</APPLET>

©2018 Martin Webb