Tagged Questions
25
votes
8answers
10k views
How do you tell if caps lock is on using JavaScript?
How do you tell if caps lock is on using JavaScript?
One caveat though: I did google it and the best solution I could find was to attach an onkeypress event to every input, then check each time if ...
9
votes
2answers
228 views
Is there a way how to detect IE10's “Caps Lock is on” feature?
As you probably know, there is a relatively simple way how to, more or less reliably, detect whether Caps Lock is on, especially when user starts typing into password fields. However, it is a quite ...
3
votes
1answer
329 views
detect caps lock status on page load (or similar)
In my research, I've found how to detect capslock when the caps key is pressed. However, I want to know the caps status even in cases when the key is not touched.
example:
alert(ui.Keyboard.capslock) ...
0
votes
0answers
100 views
Javascript: How to detect if CapsLock is on when application loads (without typing anything)? [closed]
Possible Duplicate:
How do you tell if caps lock is on using JavaScript?
I would like to detect the state of CapsLock immediately after my application loads (without waiting until user ...
0
votes
1answer
863 views
Caps Lock script cleanup
I was wondering if someone could help me clean up this code if possible; including merging the two functions into one. I'm new to javascript so I could really use some help.
I was able to get this ...