Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Just out of curiosity, why do you want to detect Caps Lock in a web app? – Chetan Sastry May 22 '09 at 6:14
63  
BECAUSE WAY TOO MANY OF MY USERS FILL IN THEIR FORMS LIKE THIS. – nickf May 22 '09 at 8:40
3  
And this is bad because...? – TMN Sep 28 '10 at 19:00
1  
@nicf: If that's the reason, why don't you run a regexp on the input and ask them to stop shouting if there are too many upper case letters? – some Sep 28 '10 at 20:08
38  
There's a much better reason to do this. If a user is entering a password, it would be very useful to warn them if their capslock is on. – T Nguyen Jun 11 '11 at 8:14
show 1 more comment

10 Answers

up vote 28 down vote accepted

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

JavaScript: Detecting Caps lock

function isCapslock(e){

    e = (e) ? e : window.event;

    var charCode = false;
    if (e.which) {
        charCode = e.which;
    } else if (e.keyCode) {
        charCode = e.keyCode;
    }

    var shifton = false;
    if (e.shiftKey) {
        shifton = e.shiftKey;
    } else if (e.modifiers) {
        shifton = !!(e.modifiers & 4);
    }

    if (charCode >= 97 && charCode <= 122 && shifton) {
        return true;
    }

    if (charCode >= 65 && charCode <= 90 && !shifton) {
        return true;
    }

    return false;

}

JavaScript: Detecting Caps lock

share|improve this answer
2  
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
1  
It's possibly not the best implementation but when I wrote it I was trying to keep it simple. I think the only way you can really do it with the nastyness you need to cover for different browsers. – Orange Box Dec 10 '09 at 10:29
hmmm and how it is supposed to work on non-ASCII charaters? – Łukasz Lech Apr 15 at 6:39

In jQuery,

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

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

share|improve this answer
2  
actually... fromCharCode eliminated the need for me to even check. however it should be noted that keydown and keypress give different charcodes, which was where I went wrong in the first place. – Shea Nov 7 '11 at 21:24

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).

share|improve this answer

In JQuery. This covers the event handling in Firefox and will check for both unexpected uppercase and lowercase characters. This presupposes an <input id="password" type="password" name="whatever"/>element and a separate element with id 'capsLockWarning' that has the warning we want to show (but is hidden otherwise).

$('#password').keypress(function(e) {
    e = e || window.event;

    // An empty field resets the visibility.
    if(this.value === '') {
        $('#capsLockWarning').hide();
        return;
    }

    // We need alphabetic characters to make a match.
    var character = String.fromCharCode(e.keyCode | e.which);
    if(character.toUpperCase() === character.toLowerCase()) {
        return;
    }

    // SHIFT doesn't usually give us a lowercase character. Check for this
    // and for when we get a lowercase character when SHIFT is enabled. 
    if((e.shiftKey && character.toLowerCase() === character) ||
        (!e.shiftKey && character.toUpperCase() === character)) {
        $('#capsLockWarning').show();
    } else {
        $('#capsLockWarning').hide();
    }
});
share|improve this answer

I know this is an old topic but thought I would feed back in case it helps others. None of the answers to the question seem to work in IE8. I did however find this code that works in IE8. (Havent tested anything below IE8 yet). This can be easily modified for jQuery if required.

function capsCheck(e,obj){ 
    kc = e.keyCode?e.keyCode:e.which;  
    sk = e.shiftKey?e.shiftKey:((kc == 16)?true:false);  
    if(((kc >= 65 && kc <= 90) && !sk)||((kc >= 97 && kc <= 122) && sk)){
        document.getElementById('#'+obj.id).style.visibility = 'visible';
    } 
    else document.getElementById('#'+obj.id).style.visibility = 'hidden';
}

And the function is called through the onkeypress event like this:

<input type="password" name="txtPassword" onkeypress="capsCheck(event,this);" />
<div id="capsWarningDiv" style="visibility:hidden">Caps Lock is on.</div> 
share|improve this answer

Recently there was a similar question on hashcode.com, and I created a jQuery plugin to deal with it. It also supports the recognition of caps lock on numbers. (On the standard German keyboard layout caps lock has effect on numbers).

You can check the latest version here: jquery.capsChecker

share|improve this answer

In this below code it will be show alert when Caps lock on and they press key using shift.

if we return false; then current char will not append to text page.

$('#password').keypress(function(e) { 
    // e.keyCode is not work in FF, SO, it will
    // automatically get the value of e.which.  
    var s = String.fromCharCode( e.keyCode || e.which );
    if ( s.toUpperCase() === s && s.toLowerCase() !== s && !e.shiftKey ) {
            alert('caps is on');
            return false;
    }
else  if ( s.toUpperCase() !== s) {
            alert('caps is on and Shiftkey pressed');
            return false;
    }
});
share|improve this answer

When you type, if caplock is on, it could automatically convert the current char to lowercase. That way even if caplocks is on, it will not behave like it is on the current page. To inform your users you could display a text saying that caplocks is on, but that the form entries are converted.

share|improve this answer
Yes, but then you'd still need to detect caps lock. Plus, this means that you're disallowing uppercases in passwords, which is sub-optimal. – Dave Apr 20 '12 at 14:49
to detect if caps lock is on, you have to check if the lowercase version of the char you sent is different from it, if it is --> caps lock, then «Warning : you are using caps lock but our system is converting in lower case», I guess javascript isn't meant to detect caps lock after all (checkings caps lock need a system access), you must find the way around that best fits your need – Frederik.L Oct 22 '12 at 17:53

In jQuery:

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

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

share|improve this answer
6  
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
1  
bad bad answer. – android.nick Jul 21 '11 at 21:42

try this out simple code in easy to understand

This is the Script

 <script language="Javascript">
function capLock(e){
 kc = e.keyCode?e.keyCode:e.which;
 sk = e.shiftKey?e.shiftKey:((kc == 16)?true:false);
 if(((kc >= 65 && kc <= 90) && !sk)||((kc >= 97 && kc <= 122) && sk))
  document.getElementById('divMayus').style.visibility = 'visible';
 else
   document.getElementById('divMayus').style.visibility = 'hidden';
}
</script>

And the Html

<input type="password" name="txtPassword" onkeypress="capLock(event)" />
 <div id="divMayus" style="visibility:hidden">Caps Lock is on.</div> 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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