Tagged Questions
Occurs when a key is pressed while the control has focus.
156
votes
19answers
167k views
jQuery Event Keypress: Which key was pressed?
With jQuery, how do I find out which key was pressed when I bind to the keypress event?
$('#searchbox input').bind('keypress', function(e) {});
I want to trigger an submit when ENTER is pressed.
...
35
votes
5answers
30k views
Jquery: how to detect a textbox's content has changed
I want to detect whenever a textbox's content has changed. I can use the keyup method, but that will also detect keystrokes which do not generate letters, like the arrow keys. I thought of two methods ...
21
votes
5answers
20k views
Definitive way to trigger keypress events with jQuery
I've read all the answers on to this questions and none of the solutions seem to work.
Also, I am getting the vibe that triggering keypress with special characters does not work at all. Can someone ...
15
votes
1answer
5k views
Capturing “Delete” Keypress with jQuery
When using the example code from the jQuery documentation for the keypress event handler, I'm unable to capture the "Delete" key. The snippet below is going to log "0" when the Delete key is pressed ...
14
votes
3answers
4k views
Simulate TAB keypress event in Selenium RC
I need to simulate a tab keypress in Selenium RC, using the Java API.
I do this after having entered some text using:
selenium.type(input, "mytext");
I've tried 3 alternatives to get the tab ...
11
votes
3answers
3k views
jQuery: how to filter out non-character keys on keypress event?
I tried searching but unsure of what terms to look for.
I'm using jQuery and would like to use the keypress event in a textbox, but prevent all non-printable characters (ie. Enter, ESC, arrow keys, ...
9
votes
3answers
106 views
Differentiate between mouse and keyboard triggering onclick
I need to find a way to determine if a link has been activated via a mouse click or a keypress.
<a href="" onclick="submitData(event, '2011-07-04')">Save</a>
The idea is that if they ...
8
votes
6answers
888 views
Can I conditionally change the character entered into an input on keypress?
Is it possible to change the character which has been entered on keypress, without doing it manually?
For example, if I want to force uppercase letters based on some condition, it'd be nice to do the ...
7
votes
7answers
2k views
How to know when a user has really released a key in Java?
(Edited for clarity)
I want to detect when a user presses and releases a key in Java Swing, ignoring the keyboard auto repeat feature. I also would like a pure Java approach the works on Linux, Mac ...
6
votes
4answers
116 views
javascript (jquery) numeric input: keyCode for '3' and '#' are the same
I need to set up an <input type="text" /> so that it will accept only numeric chars, backspace, delete, enter, tabs and arrows.
There's a lot of exemple around there, i started with something ...
6
votes
1answer
89 views
Detect FN-Key on Mac using Javascript
i want to capture the fn-key on the Mac keyboard in my CMS application. Binding an event to the key and logging the codes showed me that the keycode returned by the fn-key is 0 (zero).
I am tempted ...
6
votes
2answers
3k views
c# listen for key press in console app
How can I continue to run my console application until a key press eg "esc" is pressed?
Im assuming its wrapped around a while loop. I don't like readkey as it pauses and asked for the key rather than ...
6
votes
9answers
610 views
Using jQuery to replace textbox with <textarea> after certain character length
I'm using the simple code below to replace a textbox (<input type=text />) with a <textarea> element after the user types in a certain number of characters. In the example below, this ...
6
votes
3answers
5k views
jquery keypress() event get text
I want a function to be run when a keypress occurs on a text box, so I have this code:
$("input[x]").keypress(function() {
DoX();
})
This is working fine, but in my function I want to ...
5
votes
9answers
588 views
Capture keypress to filter elements
I'm creating a <select> replacement using jQuery to replace it with divs and links.
Now I want to filter it when I start to type something with the new select open.
Like Google Translate does ...
5
votes
2answers
555 views
Wicket: Close ModalWindow on keypress
I would like to be able to close a ModalWindow when the user presses a key, in my case ESC.
I have a Javascript listener for the keypress which calls the click event of the cancel button's ID:
...
5
votes
2answers
2k views
jquery: keyPress Backspace won't fire?
wonder what i'm doing wrong:
$('.s').keypress(function(e) {
switch (e.keyCode) {
case 8: // Backspace
//console.log('backspace');
case 9: // Tab
...
5
votes
1answer
1k views
jquery bind keyup to body in firefox
i m binding keyup function in jquery to body which works in every browser
except firefox
the code: -
$('body').bind('keyup', function(e) {
//alert ( e.which );
alert('testing');
});
how ...
5
votes
1answer
204 views
Can you distinguish between the left CTRL key and right CTRL key using keycodes in .keypress()?
This code will fire an alert if I hit either CTRL key:
$('#text').bind('keypress', function(e) {
if(e.keyCode==17)
{
alert("Boo ya");
}
});
Any way to only fire the alert if ...
5
votes
1answer
385 views
How do you get the last arrow key pressed using curses?
I'm writing a Python snake game using curses, but am having some trouble controlling the snake, my current code for controlling the snake is placed inside the main loop and looks like this:
while ...
5
votes
4answers
570 views
How to send function keypress (F1..F12) to a console app in .NET
I am writing a windowed .NET app in C#, which runs a third party console application via the Process class, as hidden as possible (CreateNoWindow, RedirectStandardOutput, etc.).
I've redirected it's ...
5
votes
1answer
436 views
Jquery effect problem : How to detect if mouseover is triggered by scroll?
I have another problem, and because the reply is to fast here i come back again !!
I would like to use "key navigation" and for that, i use the keypress event with down/up key )
When my mouse is ...
5
votes
3answers
1k views
optimized search using ajax and keypress
i have the following code as i want to search a database as a user is typing into a textbox. This code below works fine but it seems a little inefficient as if a user is typing really fast, i am ...
5
votes
2answers
264 views
Cancel a keystroke in jQuery
Is is possible (cross-browser compatible) to CANCEL a keystroke after a user has made it (for example on a textbox)
The code I currently use edits the textbox value after the keystroke has been ...
5
votes
4answers
2k views
Can you restrict entering invalid keystrokes with jQuery UI autocomplete combobox?
When using the jQuery UI autocomplete combobox, I would thought there would be an option to force only a valid key entry based on the list. Is there any way to not allow invalid keys, so you can only ...
5
votes
4answers
767 views
IE e.keyCode - How can I differentiate between ampersand and up-arrow?
I am fighting with a very strange javascript behavior on a jQuery UI widget I'm trying to fix.
IE7 (win XP), jQuery 1.2.6 (yes, it's an old version).
The widget is a combo-box, which captures ...
5
votes
4answers
2k views
Receiving key press and key release events in Linux terminal applications?
I would like to write a simple C program that will perform different actions based on both "key down" and "key up" events. This program will be run from inside rxvt.
What library or mechanism should ...
5
votes
6answers
4k views
Stop keypress event
How to stop keypress event in keydown.
I have a keydown handler in that i need to stop keypress event.
Actually i have a form and textbox in it.
whn user press "enter" key, keydown i trigger the ...
5
votes
2answers
1k views
How to trap double key press in javascript?
I would like to be able to trap the double key press (for the Char T for example) in order to do some special processing.I would like the key presses to happen fast enough to not be interpreted as two ...
5
votes
2answers
8k views
jQuery: how to capture keypress key using live()
I need to capture a tab keypress event on some dynamic inputs, but the normal syntax using the keypress event doesn't seem to be catching the key code.
$('input').live('keypress', function (e) {
...
5
votes
4answers
8k views
Search datagridview on user keypress
I'm trying to select the first row where the cell value starts with the same keychar the user pressed. That's the part that is giving me trouble.
Here's how I'm handling the event (updated with ...
5
votes
5answers
3k views
Key Presses in Python
Is it possible to make it appear to a system that a key was pressed, for example I need to make a the 'A' key be pressed thousands of times, and it is much to time consuming to do it manually, I ...
4
votes
3answers
288 views
Arrow keys not working in Firefox
We're creating a slideshow in HTML/CSS/JS but it isn't working in Firefox for some reason. It works in Webkit browsers without a problem..
The code is this:
keyPress : function() {
$( ...
4
votes
1answer
187 views
How to emulate/spoof keypress event in Haskell?
How to emulate/spoof keypress event in Haskell?
I have an onscreen number keypad in my Gui which I want to use to write into a number of text entrys in the window. The Keypad is made up of button ...
4
votes
1answer
195 views
keyReleases are simulating keyPresses in Linux (java Swing GUI)
I have a kiosk GUI application I'm working on and it requires me to block users from being able to Alt-Tab out of the fullscreen window. I posted a question about this a while back and a member helped ...
4
votes
3answers
671 views
Changing the keypress
In an input box or contenteditable=true div, how can I modify a keypress for the letter "a" to return a keybress for the letter "b"? I.e., every time you type the letter "a" in the div, the output is ...
4
votes
2answers
440 views
Prevent spaces in a MaskedTextbox
How can I prevent spaces in a maskedtextbox? Used KeyPress but the e.handled doesnt work. Can somebody direct me to a post that shows how to handle this? The masked textbox is used for ssn.
Thanks
4
votes
3answers
3k views
Firebug JS warning to jQuery 1.4.2 “The 'charCode' property of a keyup event should not be used. The value is meaningless.” To ignore it?
Firebug 1.5.4 JavaScript warning : The 'charCode' property of akeyupevent should not be used. The value is meaningless. To ignore it? Is there any issue?
The warning appears to jQuery 1.4.2 ...
4
votes
1answer
1k views
JavaScript Keycode 46 is DEL Function key or (.) period sign?
Im writing some logic in JavaScript using jquery, where i must check the input content against a REGEX pattern ex:
"^[a-zA-Z0-9_]*$" //Alpha-numeric and _
The logic is almost done, i just have a ...
4
votes
2answers
1k views
Greasemonkey Javascript Key Press Help
So I'm currently trying to make a GreaseMonkey script that will allow a user to press left or right on their keyboard and have that go to a previous comic strip or go to the next strip. I currently ...
4
votes
2answers
2k views
How to convert ASCII character to CGKeyCode?
I need a function that, given a character, returns the CGKeyCode associated with the position of that character on the current keyboard layout. E.g., given "b", it should return kVK_ANSI_B if using ...
4
votes
4answers
3k views
Keypress in jQuery: Press TAB inside TEXTAREA (when editing an existing text)
I want to insert TAB characters inside a TEXTAREA, like this:
<textarea>{KEYPRESS-INSERTS-TAB-HERE}Hello World</textarea>
I can insert before/after the existing TEXTAREA text - and I ...
4
votes
1answer
659 views
Help: Maximum number of clients reached - Segmentation fault
I want to simulate many key press events. I found a solution by using XTestFakeKeyEvent, but when I simulate more than 210 times my program raises a "Maximum number of clients reached" segmentation ...
4
votes
2answers
711 views
How do I get the active ChildWindow of an application?
I want to send a pressKey event to a certain application which is not the active application IN Windows so I have to use the sendMessage/postMessage api calls.
However, I need to know the exact child ...
4
votes
4answers
7k views
Call a specific button onClick event when the enter key is pressed C#
I'm trying to get a specific asp:button onclick event to fire when I press the enter key in a specific asp:textbox control.
The other factor to be taken into account is that the button is within a ...
3
votes
3answers
46 views
How do I get the value of each key pressed and use it in a variable with jQuery?
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 ...
3
votes
1answer
35 views
Javascript: ignore alt-characters
I have an iframe (with designMode set to on) within a page that has a keypress listener in it. The keypress function listens for certain alt-character keystrokes, but I never want these ...
3
votes
2answers
119 views
Simulating sms style typing using keypress
Can anyone point me in the right direction to be able to simulate sms style typing using keypress on the number pad?
I can get each number to print out a letter but am unsure of how to get my program ...
3
votes
2answers
71 views
jquery custom keycode trigger not working
I want to send keystrokes on the selected element like this:
$(":input").click(function(){
$(this).trigger("keydown", [{
preventDefault:function(){},
keyCode:9,
shiftKey: ...
3
votes
1answer
95 views
What's a simple way of programmatically simulating user input?
I have a dialog that pops up as result of an error condition. I want the dialog to remain open for at least 30 seconds, and close 30 seconds after the last user input (mouse or keyboard) is received.
...