Navigator javaEnabled() Method
Example
Find out if your browser has Java enabled:
var x = "Java Enabled: " + navigator.javaEnabled();
Try it Yourself »
Definition and Usage
The javaEnabled() method returns a Boolean value that specifies whether the browser has Java enabled.
Java is a programming language, owned by Oracle. You can read more about Java in our Java Tutorial.
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
Method | |||||
---|---|---|---|---|---|
javaEnabled() | Yes | Yes | Yes | Yes | Yes |
Syntax
navigator.javaEnabled()
Parameters
None |
Technical Details
Return Value: | A Boolean, indicating whether the browser has Java enabled. Returns true if enabled, false if not. |
---|
❮ Navigator Object