How do I get the value of each key pressed and use it in a variable with jQuery? I want to get a key pressed and reveal a certain picture on the page that correlates to that key right when it is pressed. I also ONLY want to target A-Z and "."
Thanks!
How do I get the value of each key pressed and use it in a variable with jQuery? I want to get a key pressed and reveal a certain picture on the page that correlates to that key right when it is pressed. I also ONLY want to target A-Z and "."
Thanks!
Share Improve this question asked Nov 22, 2011 at 5:35 Michael RaderMichael Rader 5,9678 gold badges36 silver badges44 bronze badges 1- what have u tried so far? post ur code ?? – Ghostman Commented Nov 22, 2011 at 5:37
3 Answers
Reset to default 7Using jQuery, you can use the keypress
event, and then convert the character to a string, and match it against your criteria.
Here's a working example:
$(document).keypress(function(e)
{
var s = String.fromCharCode(e.which);
if (s.match(/[a-zA-Z\.]/))
console.log(s + ' is a match!');
});
Update: For the key pressed inside another element, just use the selector $('#LearnStart')
, as seen here.
heres a link for jquery Keypress function and how to use it
avoid having ids preceeding with #. with an input of id LearnStar you can insert a script like this:
$("#LearnStar").live("keypress",function(e)
{
var s = String.fromCharCode(e.which);
if (s.match(/[a-zA-Z\.]/))
console.log(s + ' is a match!');
});
The live event basically takes care of the fact that if the control is rendered on the page after the script has been loaded.
You can do nifty stuff with this like prevent the user from typing non valid keys by using
e.preventDefault()
and returning false from the callback function.