How can I use
$('div').bind('keyup', function(e) {
if(e.which == '@') {
}
});
Wondering how I can get the @ symbol for keyup ?
|
|
Use the If you need a reliable method to check the character of a key during the
|
||||
|
You could try yourself before post such question Go to JSBin and do a simple test: Then you will know exactly what to look for. by the way, because you need to worry about plenty on all mobile devices and browsers, I will suggest that you use
or if you need to know if it's the last character written:
|
||||
|
This seems to be working.. http://jsfiddle.net/jNeH9/2/
|
|||
|
|