Skip to content

Instantly share code, notes, and snippets.

@corypina
Created March 13, 2024 01:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corypina/4692aa7b0dd41a80bb6d55d9a41a6533 to your computer and use it in GitHub Desktop.
Save corypina/4692aa7b0dd41a80bb6d55d9a41a6533 to your computer and use it in GitHub Desktop.
Detect caps lock
// via https://davidwalsh.name/detect-caps-lock
document.querySelector('input[type=password]').addEventListener('keyup', function (keyboardEvent) {
const capsLockOn = keyboardEvent.getModifierState('CapsLock');
if (capsLockOn) {
// Warn the user that their caps lock is on?
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment