
How to check caps lock is on in javascript
How to check caps lock is on in javascript
Hello everyone, in this post we will examine how to solve the "How to check caps lock is on in javascript" programming puzzle.
You can check caps lock is on or not in javascript by using getModifierState() method on keyup event. It will display a message if the caps lock button is on using getModifierState() which returns true if the modifier is active and false if it is not active.-
Display message if caps lock is on in javascript
<input type="password" name="password" id="password" placeholder="Enter password"/> <div id="message"></div> <script> const password = document.querySelector('#password'); const message = document.querySelector('#message'); password.addEventListener('keyup', function (e) { if (e.getModifierState('CapsLock')) { message.textContent = 'Caps lock is on'; } else { message.textContent = ''; } }); </script>
This code snippet helps you to show the message if the caps lock button is on. Just copy/paste code in body tag of HTML page or you can use it as per your requirements and it will display message on click caps lock button if it is on.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Javascript
- How to display for slash as a string in javascript HTML
- How to push string in an array in Javascript
- Remove property from object in javascript
- How to display an image in Javascript onclick
- ReferenceError: $ is not defined
- Uncaught TypeError: Assignment to constant variable
- Trim the leading and trailing comma from string in Javascript
- Cropper js with multiple images
- How to get query string value in javascript
- How to validate input type file size in javascript
- How to remove duplicate values from array in javascript
- Copy one array to another in javascript
- How to preview video before uploading in javascript
- Check if value exists in array javascript
- How to Set data to localstorage in javascript
- How to echo array in Javascript
- Input type file styling
- How to use JavaScript to search for items in a list
- How to make entire Div clickable in javascript
- How to fixed bootstrap navbar at top on scroll
- Generate 6 digit random number in javascript
- How to open modal after redirect
- Javascript to print Fibonacci series upto 15 Observations
- Javascript set timeout function with example code
- On click enter redirect to another URL with parameters in javascript