Met Nav Javaenabled
# Navigator javaEnabled() Method
[ Navigator Object](#)
* * *
## Definition and Usage
The javaEnabled() method returns a boolean value indicating whether the browser supports and has Java enabled. If it is, it returns true; otherwise, it returns false.
## Syntax
navigator.javaEnabled()
* * *
## Browser Support

All major browsers support the javaEnabled() method.
* * *
## Example
## Example
The following example returns the boolean value indicating whether Java is enabled in the current browser:
document.write("Java Enabled: " + navigator.javaEnabled());
Output:
Java Enabled: false
[Try it Β»](#)
* * Navigator Object](#)
YouTip