tags:

views:

121

answers:

3

When I am typing in the textboxcontrol, can I detect if capslock is on and inform the user?

A: 

I think there's a plugin for it.

Artelius
A: 

Not without some trickery:

http://www.codeproject.com/KB/scripting/Detect%5FCaps%5FLock.aspx

Philippe Leybaert
+2  A: 

It seem that you can detect capslock in Javascript.

For instance, see this article, which gives some code to do that : JavaScript: Detecting Caps lock

Using this code with jQuery should be possible, I guess ; though you'll have to deal with its integration...


(edit) And here is some jQuery plugin that might do the trick : http://plugins.jquery.com/files/jquery.caps.js.txt

Pascal MARTIN