
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
- Multidimensional array example javascript
- How to get file extension using javascript/jquery
- How to open modal after redirect
- Apex bar chart - fill bar color with gradient on hover
- Get multiplication in javascript using array input
- Custom slider js
- Uncaught TypeError: Illegal invocation
- Concat variable with string in javascript
- How to fixed bootstrap navbar at top on scroll
- On click enter redirect to another URL with parameters in javascript
- Prism js horizontally overflowing its container
- Ezsnippets (76) challenge - javascript - youtube shorts
- How can I add a key/value pair to a JavaScript object
- How to preview video before uploading in javascript
- How to remove duplicate values from array in javascript
- JavaScript test() Method
- Javascript to print Fibonacci series upto 15 Observations
- Animating numbers counting Javascript
- Remove property from object in javascript
- Generate 6 digit random number in javascript
- Uncaught TypeError: Assignment to constant variable
- Get hostname from URL in javascript
- How to get data from localstorage in javascript
- Uncaught TypeError: Cannot read property 'addEventListener' of undefined
- How to echo array in Javascript