1
vote
0answers
40 views

keycode is always zero in Chrome for Android

I need to detect the keycode for a custom search box on my website, but the keycode always returns as zero on Chrome for Android (except for backspace, which returns 8). Has anyone else experienced ...
1
vote
1answer
25 views

Knockout - keyCode property not being passed through wrapped function

I've set up my Knockout bindings to have a keypress event because I wish to detect <Enter> on an input field. If I have the following: data-bind="event: { keypress: KeyPress }" and my ...
1
vote
0answers
125 views

onkeypress doesn't work in IE10 document mode IE8

I have a HTML input that must call a JS function when a key is pressed. It works fine in Firefox, Chrome, and some versions of IE. It depends of the document mode of IE: Explorer mode: 10. Document ...
0
votes
3answers
68 views

Why does my computer show me that my keycode for “W” is 0 in javascript?

i am building a program in JavaScript while i tried to add keyevents.But when i was done and tried to move my object it dident move. I tried to figure out what the problem was while i tried to move a ...
0
votes
1answer
312 views

pass the value of a textbox as a parameter to a javascript function without submit button

I am writing because I have a problem with the passage of the value of a textbox without the submit button, but managing the event from the keyboard. The goal is to launch the function when I click ...
0
votes
2answers
149 views

Check if keydown event for umlaute

I want to check via eventListener if the pressed key is an umlaut (ä, ö, ü). The problem is that the charCode/keyCode is alsways 0 and if I am not mistaken the value is also used for some control ...
0
votes
0answers
176 views

how to work DEL Key on mozilla firefox

i need the help for my problem in my asp.net MVC3 application i have a textbox which is validate for currency format ($228.00) but in this text box don't work the DEL key because "." and delete key ...
0
votes
2answers
78 views

Handling specialKeys with HotKeys plugin

I'm trying to get https://github.com/tzuryby/jquery.hotkeys to work, but: $('#myInput').on({ 'keydown.space keydown.left keydown.right keydown.- keydown..' : function(e) { ...
1
vote
1answer
629 views

How do I capture keyboard events while watching an HTML5 video in fullscreen mode?

I need to know when the user presses the escape key when watching an HTML5 video in fullscreen mode. Unfortunately any configured listeners on the document don't apply since when the user is watching ...
2
votes
1answer
809 views

Chrome 10: KeyEvent or something similar to Firefox's KeyEvent

In Firefox 3.6 and 4.0 I can compare a KeyboardEvent's keyCode against predefined constants for keys stored inside of the global KeyEvent object (which is part of he DOM3 specification). KeyEvent is ...
3
votes
4answers
497 views

Capture *all* display-characters in JavaScript?

I was given an unusual request recently that I'm having the most difficult time addressing that involves capturing all display-characters when typed into a text box. The set up is as follows: I have ...