This is a JavaScript event that fires upon releasing a keyboard key. See also: http://www.quirksmode.org/js/keys.html

learn more… | top users | synonyms

0
votes
4answers
54 views

How to submit form on keypress?

I use this script to search in a static page But i want this to search when i type in the text input and not when i click the button, i searchd and i found that any of this would work: ...
1
vote
1answer
27 views

jQuery KeyUp Not Allowing More Values

I'm new to javascript (and jQuery) so bear with me. I want the user to be able to type in a number on a textbox and each time the user enters another value (keypress, keydown, keyup) the code ...
0
votes
1answer
33 views

JQuery Keyup not populating results until a space is executed

I have the following jQuery Code placed against a search bar input text box: $(document).ready(function(){ $("#q").keyup(function(event){ event.preventDefault(); ...
1
vote
1answer
29 views

Using innerHTML breaks the keyup function

So I have a text field: number of weeks <div id = "weekcount"><input type="text" id="numweeks" name="numweeks" value="" class = "dialog_inputfield" /></div><br /> And a ...
1
vote
1answer
60 views

Unable to get input box to populate with onKeyup or onChange

So I have a form that when you input a number in the Qty and Price boxes it totals them up in the Ext box as it should. As you continue down the rows to add more Qty and price it continues to ...
0
votes
1answer
164 views

Using onKeyup() to validate field based on input length - Jquery Form validation engine by posAbsolute

I'm using jQuery validation engine by posAbsolute and i've come across a problem I just can't figure out the solution to. In the validation engine plugin each field validates onBlur by default. The ...
0
votes
3answers
46 views

count words more accurately

Is it possible to make this function to count words more accurately and most important, count the word inside a editable div? $(document).ready(function() { $('.word_count').each(function() { ...
0
votes
4answers
91 views

javaScript will not let me write to a textbox value

EDIT thanks to everyone! I have a cookie on a page and when the page loads I want to put the value from the cookie into a input box as its defualt value. However it will not work and I cant find the ...
0
votes
5answers
59 views

Count words on multiple textareas on a html sheet

I have a html sheet that contains several textareas (100) and they all have the same id "edit". My problem is that I want count all the words on each and everyone individually... I have tried some ...
1
vote
0answers
53 views

Get a List of currently pressed keys, whitout keyup/keydown

I had a curious problem today: A script, that always worked before, stopped to work because apparently 'keyup' was fired directly after every 'keydown' event, killing some events that waited for long ...
-1
votes
2answers
55 views

JS referenceError: change is not defined

I have 4 input boxes that call a function when the key is lifted using the onkeyup event. For some reason, I am getting an error saying that "change" (the function's name) is not defined. I am ...
0
votes
4answers
171 views

onkeydown and onkeyup events don't work on Internet Explorer 8

My code works without problems on IE9/IE10, FF, Chrome and opera but on older Internet Explorer no Keyboard input is handled. I have the following code for handling events. It should only fire when a ...
0
votes
4answers
128 views

How to get the id of the textbox on keydown event of that textbox

I have a text box in my page: <td> <input type="text" id="Approvers1" size="11" onkeydown="AddUsersKeyDown(event)" style="width: 470px;" /> </td> This is my js function: function ...
0
votes
1answer
84 views

validate input each time the user add or remove caracter datatable primefaces

I have this column in my datatable and I want to validate it each time the user add or remove one caracter in the input I tested that : <p:column headerText="Quantité" style="width:20%"> ...
0
votes
3answers
77 views

JavaScript clearTimeout returns undefined

Can someone please explain to me what is wrong with my code below? I am declaring a public variable and setting it to a setTimeout, and if not null, clearing the timeout before it gets set again. When ...
1
vote
2answers
241 views

calling javascript function using onkeyup

I created a function to enable/disable a submit button, and I want it to run when user types something in a text field. Here is my code: <form name="sidebarPostMessageForm" ...
0
votes
2answers
93 views

Jquery keyup event

i have following small JqueryScript: $("#content").on("keyup", "#ID1", function() { $("#ID2").load("loadText", resizeResult()); }); function resizeResult() { ...
2
votes
1answer
390 views

TinyMCE - Adding Event Listeners Issue

I'm stuck on understanding how to setup event handlers for my tinymce editors. This post may get long, so my apologies. I'm reading up on this post, which is exactly what I want to do: I may be ...
0
votes
3answers
337 views

c# disable arrow navigation with tabcontrol

I have a tabcontrol in my form, and I need to use the keyup event to manage somethings. When I press left or right button, the tab page change, and I wish to disable the tabcontrol keyboard ...
0
votes
4answers
214 views

How to find out the key pressed on keyup or keypress event when dollar key is pressed

The below method returns any key from A-Z and 0-9 and when I pressed shift key + 4 its returns the same code 52. function keyUpEvent(e)//onkeyup event { var chr = ...
0
votes
4answers
56 views

Use jquery on with keyevent

I have a ajax function witch gets triggered by the .on function of jquery it looks like this: //button handler $('body').on('click', '#btn', function() { ajaxloader(this); }); Now if I have a ...
0
votes
0answers
50 views

Opera 12 on Debian GNU/Linux. KeyUp event

There were several topics on this issue. But not about Opera 12. http://jsfiddle.net/prxxZ/18/ On OPERA 12: Version 12.14 Build 1738 Platform Linux System i686, 3.2.0-4-686-pae When I press long ...
1
vote
1answer
588 views

Javascript : onchange event does not fire when value is changed in onkeyup event [duplicate]

I have this simply code : <body> <input type="text" onkeyup="this.value = (new Date()).getSeconds()" onchange="alert(1)" /> </body> I dont't know why the textbox ...
0
votes
2answers
701 views

Javascript : catch multiple onkeyup events from same text input

So i'm creating some logic for dom scripting and end up finding the problem where i needed to execute multiple methods when pressing a key. It seems the last onkeyup defined is the one which executes, ...
0
votes
1answer
79 views

Dynamically prevent onKeyUp function

I am trying to build in a Facebook like link share preview. For those visually inclined, something like this: Everything is working fine but for a couple of small things. The link share preview is ...
0
votes
0answers
134 views

Issue with cursor position in onkeyup function

I am using javascript onkeyup function for on the fly formatting of a text box (the format should be TESTXXXXXX-XXXXX where X is a number). The problem is after formatting, the cursor always goes to ...
2
votes
1answer
79 views

Tinymce onFocusOut that works in all browsers

I'm working with the tinymce editor and am having a bit of trouble. I'm trying to do some validation so I was using a onKeyUp to validate, but it immediately gives the user an error when you tab into ...
0
votes
0answers
230 views

Using both onchange and onkeyup in IE8

This is similar to this question: onkeyup event stops onchange ajax event from firing When someone updates their credit card information in a text field on our website, I have a SPAN on our ...
0
votes
1answer
116 views

Capturing line feed characters in a textbox OnKeyUp event in winforms

I have a Windows Forms application containing a textbox used to provide input to the application from a handheld barcode scanner. The barcodes we are using may contain special control characters like ...
-1
votes
1answer
38 views

Search divs on page [closed]

I have a long list of divs on a page and I want to be able to search them, with Javascript's onKeyUp. And have the all the divs hide except the searched div. It needs to be able to search
1
vote
2answers
152 views

Allow only numbers and colons in Safari and Chrome on iOS

I am using the following code to prevent certain characters from being entered into a textbox. It works fine except for Chrome and Safari (webkit mobile?) on iPads and iPhones. Works fine on Macs in ...
1
vote
1answer
296 views

Form Search Onkeyup event

I Have a Form In which the form should automatically search when i complete entering the 10th character in the text field but the below code is searching for each n every character i enter in the text ...
1
vote
1answer
148 views

Changing input value on keyup

I have an input box in my page and I want to change its value on the "keyup" event (keypress also works for me). The problem is that every time I set the value of the input, the input turns blank! ...
0
votes
3answers
262 views

Format amount on keyup

I would like to format amount on keyup javascript event. I need a result like this: 100 > 100 1000 > 1 000 100000000 > 100 000 000 1000,12 > 1 000,12 Can you help me please?
3
votes
1answer
139 views

Keyup not firing when keydown opens an alert

I have two event handlers, one for keydown and one for keyup. The keydown event handler triggers an alert message, but this prevents the keyup event from firing. You can see a very simple example ...
1
vote
5answers
191 views

Bind ctrl + u keystroke in jQuery

I am trying to build a hotkey into my web application in jQuery. I am trying to bind the ctrl + u key stroke. Here is what I have: $(document).keypress(function(e) { if(e.ctrlKey && ...
2
votes
1answer
212 views

Javascript focus() not working when onkeyup event is executed in iOS

I have 4 input boxes to enter 4 digit passcode. I want to focus to the next input box when the first input box is filled by user. I had to use document.getElementById('second').focus(); to focus to ...
0
votes
0answers
154 views

ckeditor replace words onkeyup

I've done a function that will replace all abbr by their expressions, actually this code works fine. All abbr and their correspondance are recorded on my database. Here is my code: <script ...
0
votes
2answers
218 views

javascript - show match item onkeyup

this one already works, but I have a problem on changing the content of the array. I wanted to query on my database and use that data as an element of my array. how can I do that guys? <script ...
4
votes
2answers
145 views

JQuery keyup prevents text selecion in Chrome. How to solve?

I have a function that transforms the text to uppercase on keyup. The code looks like this (I think I found it on SO too): $(selector).bind('keyup', function (e) { if (e.which >= 97 && ...
1
vote
0answers
453 views

Unwanted submit on key up in Icefaces 3.0

I use Icefaces 3.0, and I have an annoying problem. The ice:inputText component of Icefaces always (even without partialSubmit set to true) registers an onkeyup Javascript event handler on the output ...
0
votes
0answers
66 views

Show a form field on keyup

I'm trying for the life of me to show a hidden field in a form with a specific input (numbers 4 and higher). JS: function showStuff(id) { document.getElementById(id).style.display = 'block'; } ...
0
votes
3answers
131 views

Check if the entered value is unique using onkeyup JS event

I am validating a field called client code for uniqueness... I have used onkeyup JS event for this purpose. But its not working fine when i type the keys very fast. On this onkeyup event i am ...
3
votes
1answer
513 views

Javascript in Firefox : onkeyup doesn't have a keyCode for the Control key

I want to react to a key up event on my page and I need to know which key was released. The following code works fine in general but fails for the "Control" key: it alerts 0 instead of 17. The same ...
0
votes
3answers
222 views

Numpad0 not working with char.IsLetterOrDigit

I have a method that I call when a the KeyUp event fires on my control and within that method I check the key pressed is a letter or digit using the char.IsLetterOrDigit method. However it doesn't ...
1
vote
3answers
307 views

Internet Explorer - “Object doesn't support this kind of property…”

I am calling a Javascript function located in my parent window from an Iframe located in the parent during an onkeyup event. IE complains and the debugger built into IE8 stops and highlights the 'if ...
1
vote
1answer
2k views

Wicket - AjaxFormComponentUpdatingBehavior and backspace

I have a TextField where I have added an AjaxFormComponentUpdatingBehavior to get the current value when user write some string. filterByObject = new TextField<String>("filterByObject", true, ...
0
votes
3answers
215 views

ASP.Net Custom Control - override onkeyup

I am having one problem which as simple as it may seem, gives me a lot of trouble. I have defined a custom control for a textbox in ASP.NET which has built-in the onkeyup attribute. My problem is that ...
0
votes
0answers
129 views

YUI2 Rich Text Editor - Keyup

I am trying to get my text editor to save the value of the rich text editor textbox, which is currently what happens when the button 'bodyContent_load' is pressed. I need that value to update every ...
5
votes
3answers
3k views

Trying to add delay to jQuery AJAX request

I am trying to delay an AJAX request so that it is sent out 2-3 seconds after the LAST keyup of an input cell. So far I have managed to delay the requests, but after 2-3 seconds I get one request sent ...

1 2 3 4