The question title says it all really. 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 the letter pressed was uppercase, and if it was, then check if shift was also held down. If it wasn't, therefore caps lock must be on. This feels really dirty and just... wasteful - surely there's a better way than this??
|
3
|
|
||||||
|
|
|
Found this interesting.... You can give it a try.. |
||
|
|
|
in jquery
avoid the mistake like backspace key, 's.toLowerCase() !== s' is needed |
||
|
|
|
|
You can detect caps lock using "is letter uppercase and no shift pressed" using a keypress capture on the document. But then you better be sure that no other keypress handler pops the event bubble before it gets to the handler on the document.
You could grab the event during the capturing phase in browsers that support that, but it seems somewhat pointless to as it won't work on all browsers. I can't think of any other way of actually detecting caps lock status. The check is simple anyway and if non detectable characters were typed, well... then detecting wasn't necessary. There was an article on 24 ways on this last year. Quite good, but lacks international character support (use |
||
|
|
|
|
In jquery:
This jquery plugin (code) implements the same idea in Rajesh's answer a bit more succinctly. |
||||||
|
