Skip to content

Instantly share code, notes, and snippets.

@jangaraev
Created July 7, 2022 07:11
Show Gist options
  • Save jangaraev/0458942c867adce32e0cc13eb26d020f to your computer and use it in GitHub Desktop.
Save jangaraev/0458942c867adce32e0cc13eb26d020f to your computer and use it in GitHub Desktop.
const messageEl = document.querySelector('.message');
password.addEventListener('keyup', function (e) {
if (e.getModifierState('CapsLock')) {
messageEl.textContent = 'Caps lock is on';
} else {
messageEl.textContent = '';
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment