vote up 4 vote down star
3

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??

flag

68% accept rate
Just out of curiosity, why do you want to detect Caps Lock in a web app? – Chetan Sastry May 22 at 6:14
2  
BECAUSE WAY TOO MANY OF MY USERS FILL IN THEIR FORMS LIKE THIS. – nickf May 22 at 8:40

4 Answers

vote up 4 vote down check

Found this interesting.... You can give it a try..

JavaScript: Detecting Caps lock

link|flag
yeah, that's using the method which I already found. I was wondering if there was a better way? – nickf Dec 8 '08 at 6:42
vote up 0 vote down

in jquery

$('#example').keypress(function(e) { 
	var s = String.fromCharCode( e.keyCode );
	if ( s.toUpperCase() === s && s.toLowerCase() !== s && !e.shiftKey ) {
		alert('caps is on');
	}
});

avoid the mistake like backspace key, 's.toLowerCase() !== s' is needed

link|flag
vote up 2 vote down

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.

document.onkeypress = function ( e ) {
  e = e || window.event;
  var s = String.fromCharCode( e.keyCode || e.which );
  if ( s.toUpperCase() === s && !e.shiftKey ) { // incomplete: shift + caps MAY = lowercase
    // alert('caps is on')
  }
}

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 toUpperCase() to get around that).

link|flag
vote up 0 vote down

In jquery:

$('some_element').keypress(function(e){
       if(e.keyCode == 20){
             //caps lock was pressed
       }
});

This jquery plugin (code) implements the same idea in Rajesh's answer a bit more succinctly.

link|flag
that'll detect if you press caps lock (even if you're turning it off), not whether or not it is on. – nickf Dec 8 '08 at 6:37
correct. i'm still trying to figure out if there is a cleaner way to do this than what is in the blogpost linked above. – rz Dec 8 '08 at 6:48
It seems like this could be used to check cap and shift, and would be a bit less wasteful, since it is bound to a single element, like a password field... – Eli Dec 9 '08 at 0:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.