Tagged Questions
4
votes
2answers
3k views
KeyDown recognizes the left and right directional arrow keys, but not up and down
With the code below, the Left and Right arrow keys function as expected, but the up and down arrows are not recognized (stepping through it, the first two conditions are met where appropriate, but the ...
4
votes
2answers
435 views
How to have “jQuery.Event” work on Firefox?
I'm writing a script which triggers an artificial keydown event with keyCode 37 when
button is clicked.
The following script works fine on IE, Safari, and Chrome, but it doesn't work on Firefox and ...
1
vote
2answers
549 views
Catch “Command+R” in Safari with JQuery
I need to intercept the browser-reload-functionality in Safari (I know this is usually not something one should do, but in my case this makes sense).
For Windows I just do this:
...
0
votes
2answers
653 views
Disable keydown shortcuts if input(s) is focused
I have few inputs which you focus them using keycodes.
I am trying to: when focus on inputs, disable the keycodes function and when not focused, enable.
I tried this:
var hotkeys_function = false;
...
0
votes
5answers
2k views
More efficient way of screening KeyCodes on KeyDown Event
I'm trying to fire an event perform some work when the user tries to enter only useful data into a form-field using the KeyDown event. But, I keep getting false alarms because the KeyDown event works ...
1
vote
2answers
685 views
KeyCode and keyboard layout and language
I need to include the asterisk as an allowable entry on a text box.
How can I test for this key under the KeyDown event regardless of the keyboard layout and language?
Ignoring the numeric keypad, ...
