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
0answers
802 views

onkeyup client event issues on telerik input controls

i want to copy a textbox text property to another when typing (should be exactly the same)... so please see the below codes (copy and paste and Test them) : <%@ Page Language="C#" ...
0
votes
3answers
2k views

JavaScript onKeyUp time delay

I need some help with a JavaScript function that I call onKeyUp, it is a Ajax function but every time I write any character it calls the function and it slow the page performance and it check every ...
0
votes
3answers
736 views

Detect keyup on winform without any control

As stated in title, I have a form that doesn't have any control on itself (so I can't focus it!!! damn). I keep it controlless because I need to show images on background and I need to move it by ...
5
votes
1answer
838 views

jQuery triggers keyup event only if it was attached with jQuery

Realy messed up with triggering keyup event using jQuery. Here is the clean example http://jsfiddle.net/xQcGM/2/ When I type in any of input's, they both fire event, but when I try to fire it ...
0
votes
3answers
1k views

Firefox: HTML keyUp event has no event data

onKeyUp event is working in IE(7) and not in Firefox(4.0.1). I have a textfield with attribute onclick="eventName();" in the javascript function eventName(evt) I do not have an event data, the event ...
3
votes
5answers
9k views

JQuery: Keyup, how do I prevent the default behavior of the arrow (up & down) and enter key?

JavaScript (JQuery) $('input').keyup(function(e) { var code = e.keyCode ? e.keyCode : e.which; switch(code) { case 38: break; case 40: break; ...
2
votes
1answer
616 views

jquery keyup ignore non-changing characters

I'm trying to get an event to fire whenever a contenteditable div is changed using keyup. Unfortunately it's also catching things like moving the caret with the arrow keys. I only want it to spot ...
0
votes
1answer
2k views

onKeyUp with one input field affecting another with jQuery?

I've got 2 input fields. They are both currently populated. Input 1 = "Name" Input 2 = "Name says this: blah blah blah" I'm trying to figure out how to bind an onKeyUp event to both of them so ...
1
vote
3answers
149 views

How can I fire an event that depends on 2 form inputs meeting a certain criteria?

I want to show/hide elements on the page depending on whether 2 form inputs match. So in this example, if a text field is greater than 100000 and a radio button has a certain value, said elements will ...
1
vote
0answers
350 views

blackberry: onkeyup doesn't catch BACKSPACE

i need to get value of a INPUT of type TEXT in real time. So i assigned to onkeyup of the INPUT to my function, that evaluates the new value. It works fine on BB (i use 9780/OS6 for tests) except, ...
1
vote
2answers
185 views

Doesn't fade out error message after passing 3 char length

<form id="createtableform" method="post" action=""> <p> Masa ismi : <input type="text" name="name" id="tablename" /> </p> <p> <input type="submit" ...
0
votes
2answers
552 views

impliment html onkeyup and onkeydown on iphone

what is equivalent to onkeyup and onkeydown event listener for html page on UIWebView
1
vote
5answers
2k views

jQuery KeyUp and Click

I was wondering how you can do .keyup() and .click() for the same #id? i.e. essentially I want to validate the #id when both the user attempts to hit enter or hits the #search button. Thanks alot
0
votes
1answer
869 views

keydown (repetition) breaks when keyup event (for ANOTHER key) is fired

This is a bit of a weird one so I figure I'm either missing something obvious or this is a flaw with how these events are implemented in browsers. Let me first summarize an example scenario this ...
0
votes
2answers
685 views

jQuery delay and keyup

HI guys, What I'm trying to do is to display the animated gif while someone is typing text into the text field with keyup and once they've finished typing, the gif to disappear and display message ...
0
votes
2answers
3k views

how i can execute a jQuery function after a time period when event fire in jQuery?

I want to fire a event on keyup of textbox 300 milisecond later $("#blah").keyup(function () { //code is here }).delay(300).myfunction(); when i try to execute this ...
0
votes
2answers
736 views

search engine like google search

am trying to do search engine same like google search using html ajax and jsp 1.When i hit a character in my text box it calls ajax for every hit 2.ajax redirects it to jsp where i have a simple ...
1
vote
1answer
140 views

Autoset textbox values with jQuery

I have the following code: this.urlSet = function(){ $("#url").keyup(function(){ $("#firstpath").val() = $("#url").val().substring(0,8); $("#secndpath").val() = ...
0
votes
2answers
458 views

change submit in to onkeyup event

I have found a nice script at Google Powered Site Search I'm trying to change the jquery with no luck so far. I changed this code: $(‘#searchForm’).submit(function(){ googleSearch(); return false; ...
0
votes
0answers
352 views

keydown and mouse click problem

if i press down some keys (down, up, ..) and simultaneously click the mouse button, the keyup handler will not get called (sometimes). how to solve that problem? :/ var Key = { _pressed: {}, ...
0
votes
1answer
273 views

JS/jQuery : Amend contents of div contenteditable and refocus

My Aim: To be able to add/amend the content inside my content editable user input div on 'keyup' and be able to refocus it so that the user is not interupted. My Problem: Content Editable div fails ...
0
votes
1answer
234 views

adding new line character (BR) but BR must be hidden in text box when user press enter in jquery

My question is the same as the question stated in adding <br/> to the text-box when user press enter key in jquery I am getting br but I want to hide the <br> character when user press ...
4
votes
2answers
2k views

adding <br/> to the text-box when user press enter key in jquery

I want to add the <br/> (newline) to text box when user clicks on the enter button. How can I achieve it in jquery onkeyup event. Can one show me the example or any good website implementing ...
0
votes
2answers
80 views

Submiting form on keyhit. Butut not on every keyhit

i'm currently using this to get the results without enter clicking or Submiting form, just by typing: <script type="text/javascript"> $(function() { ...
0
votes
1answer
311 views

Display previous input on keyup from user, in Python?

I have a simple Python program which uses a read-eval-print loop to read user input via raw_input and then print things to the screen. I would like to keep a history of previous inputs and cycle ...
0
votes
3answers
1k views

Instant search function in Javascript

I am using the following javascript for my instant search function (to detect when the visitor stops writing, so the function won't run on every single keyup). It works but it’s more delay than 1000 ...
12
votes
8answers
34k views

Count characters in textarea

I want to count characters in a textarea, so I just made: <textarea id="field" onkeyup="countChar(this)"></textarea> function countChar(val){ var len = val.value.length; if ...
0
votes
1answer
471 views

JQuery / Smarty: variable within .keyUp is undefined

So basically, I'm creating variables within the keyUp method of input box that get their data from a smarty loop (this is within the $(document.ready) Here is the code {section name=unitEl ...
2
votes
2answers
431 views

Javascript/JQuery How to prevent function from repeatedly executed when holding down key?

Let suppose we have the following JQuery Code: $(document).bind('keyup', function(e) { arrows=((e.which)||(e.keyCode)); switch (arrows){ case 37: executeMyfunction(); break; } }); If a user ...
0
votes
1answer
337 views

OnKeyup in input field tied to partial refresh not working on last backspace

I have written an web page in XPages. I have an input field that fires the onkeyup event when a value changes. In the onkeyevent I fire a partial refresh of a div that contains a view of data. I ...
2
votes
1answer
1k views

setTimeout does not wait for specified number of milliseconds

I would like to have a form triggering submit after a few seconds of inactivity (using the onKeyup event). My code is as follows: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" ...
2
votes
2answers
7k views

onkeyup event asp.net

Hi how can i register and call a server side event for onkeyup event in asp.net textbox. Is it possible? thank you
0
votes
2answers
724 views

Trouble with keyup in jQuery

Maybe noobie question about the keyup function, if the document is ready the div with id "testdiv" is empty that should not be. I want the testdiv empty if you really keyup. I have made a tiny script ...
0
votes
2answers
749 views

HTML input in table not responding to onkeyup

Here is the code initializing my Table: <table cellspacing="0"> <caption id="title4"> Sprinkles (5 - 6 oz.) </caption> <thead> ...
1
vote
3answers
627 views

jquery return value of input to var

I'm trying to make a variable equal the value of the text box. I have the text box value being set to a variable and returned as an alert (for now) but I can't figure out how to call that variable ...
0
votes
1answer
525 views

jquery: load ajax request on keyup - no arrowkeys?

hey guys, i have this weird situation where i load elements via the jquery load() method when typing in a inputfield. On every keypress i fire a doSearch() function that loads a specific page. I don't ...
0
votes
1answer
837 views

.keyup not firing for delete of first char in input field

Strange phenomenon detected with JQuery 1.4.4 for FireF, Chrome, Safari (IE untestested). Aim: update a list while the user types a filter value into a simple, basic text-input-box. Solution: bound ...
6
votes
1answer
4k 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 ...
0
votes
4answers
210 views

jQuery check on wordchange rather than “change” trigger

I have a input that the user types a search parameter into, at the moment i have it on keyup to do a POST ajax request to a PHP script that returns search results. however its firing off 50 billion ...
1
vote
3answers
1k views

jquery: keydown, keyup, small snippet, why isn't this working?

Why isn't this working? var holdingctrl = false; $(document).keydown("q",function(e) { if(holdingctrl == true) alert("Holding CTRL and pressing Q: Success."); e.preventDefault(); }); ...
0
votes
1answer
572 views

Advice on usability for submit buttons vs onkeyup jQuery

I have a webpage where i have a table of parts and column filtering inputs above each column so people can filter the parts in the table, the jQuery works on keyup so every time they type a letter it ...
2
votes
1answer
435 views

Jquery - Best onkeyup way to usespecial Keys linke [CTRL]+[UP] (all Browser)

can somebody tell me the best jquery onkeyup way to use these (multi) keys [CTRL]+[DOWN] [CTRL]+[UP] [ALT]+[DOWN] [ALT]+[UP] [DOWN] [UP] It must work in every new Browser. That is rly important ...
1
vote
2answers
3k views

HTML Forms Text onkeyup

This code changes whatever the user types in the box to uppercase, and displays the result in the box. <html> <head> <script type="text/javascript"> function upperCase(x) { var ...
0
votes
1answer
801 views

Android onKey is not fired for soft keyboard on a nexus one

I'm trying to catch onKey events from a soft keyboard. however, only few keys fire the onKey event (Delete, back, etc.). not regular characters. anyone know why?
3
votes
3answers
6k views

Jquery Delay Between Keyup Functions

I have a bit of code that i am writing, trying to intergrate bing search API in my site with instant search results. I use jquery's keyup function to send the data to my server side script which then ...
1
vote
2answers
474 views

Input Onkeyup can be avoided by form autocomplete

I'm validating a field using OnKeyUp. Unfortunately it is not running when the user selects an autocomplete suggestion in his browser. I would like to know if there is any way I can trigger my ...
2
votes
2answers
663 views

Calculating two element onkeyup - How can I convert this to jQuery?

Im having a trouble converting my scripts to jQuery. How can I compute two elements at once? <script type="text/javascript"> function Compute(target, currentValue){ ...
0
votes
1answer
1k views

Combination of Keypreview property and Keypress Event In Winform

As far as I know that above is not possible in below case. I explain it in details here. Suppose If I have Form1 and I set it’s Keypreview Property = true than the “Keyprees,Keydown,and Keyup" ...
0
votes
1answer
927 views

onkeyup event JavaScript

Here is my code : function search_buddy() { $.post("num.php",function (ret){ num=ret; }); $("#Layer7").html(num); } </script> <div id="Layer8"> Find ...
2
votes
2answers
2k views

javascript - capture input and convert characters

I want to capture input charcters in text box, convert then according to a table and put them back in text box as user types. <form id='myForm'> Enter phone number:<input type="text" ...