- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
HTML Navigator language Property
The HTML navigator language property returns the browser’s language version.
Syntax
Following is the syntax −
navigator.language
Let us see an example of HTML navigator language property −
Example
<!DOCTYPE html> <html> <style> body { color: #000; height: 100vh; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) no-repeat; text-align: center; } .btn { background: #db133a; border: none; height: 2rem; border-radius: 20px; width: 330px; display: block; color: #fff; outline: none; cursor: pointer; margin: 1rem auto; } .show { font-size: 1.5rem; color: #fff; } </style> <body> <h1>HTML navigator language property Demo</h1> <button class="btn" onclick="display()">Show Browser Language</button> <div class="show"></div> <script> function display() { document.querySelector(".show").innerHTML = "Browser Language Version: " + navigator.language; } </script> </body> </html>
Output
Click on “Show Browser Language” button to display the language version of browser.
Advertisements