Tagged Questions

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

7
votes
3answers
3k views

jQuery key code for command key

I have read http://stackoverflow.com/questions/302122/jquery-event-keypress-which-key-was-pressed and ...
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 ...
4
votes
1answer
257 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 ...
3
votes
2answers
82 views

Navigate to rel=next and rel=prev page using left and right arrow

I have a page with prev and next links: <link rel="prev" href="http://camera.phor.net/cameralife/photos/11096&#63;referer=index.php"> <link rel="next" ...
3
votes
2answers
489 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 ...
3
votes
3answers
2k 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 ...
3
votes
5answers
1k views

jQuery keyup and 'enter' in Safari

I am using jQuery and want to make it possible for the user to hit enter after entering data into a search field to start the search. I'm using the following code: ...
3
votes
3answers
810 views

jquery: do this on keyup, unless the person is in a textarea or input

my script works but i don't understand how to make it NOT launch the functions when in a textarea/input and those keys are pressed. aka: launch the event when the user presses that key, unless the ...
2
votes
1answer
80 views

I want users to see a line break in my <textarea> instead of a <br>

When I type br into my <textarea> I really mean: <br> When key 13 (return) is pressed, I insert br into the .message <textarea>. This puts a nice line break in my <div> with ...
2
votes
2answers
92 views

Adding a delay before keyup() fires in jQuery

I have read through some of the suggested questions but I am not sure exactly how to implement them: (jquery/js) - get text from field on keyup, but with delay for further typing jQuery .keyup() ...
2
votes
2answers
119 views

Trigger Change event and keyup event in select element

I have some codes that should be run when a select element changes.I do it with jquery in this way: $("#myselect").change(function() { ....... }); But I want these codes run also when user ...
2
votes
2answers
188 views

Avoid Windows 'Ding' when Enter is pressed in TextBox with OnKeyUp

If a user hits enter in a windows forms textbox with a KeyUp Event, windows sounds a beep or ding. I could not determine why this happens and how I could avoid this. Any help would be appreciated.
2
votes
1answer
226 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 ...
2
votes
1answer
400 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
3answers
621 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(); }); ...
2
votes
1answer
306 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 ...
2
votes
2answers
424 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? Thanks in Advance.. <script type="text/javascript"> function Compute(target, currentValue){ ...
2
votes
2answers
893 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" ...
2
votes
1answer
396 views

Javascript keyup doesn't work as expected, it executes in instances where I have not removed my finger from a button

I'm trying to create a simple game in javascript and I'm stuck on how to deal with keys. Small example: function keyUpEvent(event) { alert(event.keyCode); } window.addEventListener("keyup", ...
2
votes
2answers
302 views

Javascript event doesn't seem to get added to a dynamically generated textbox

I added onkeyup javascript for a dynamically added textbox in javascript... But it doesnt seem to work.... var cell4 = row.insertCell(3); cell4.setAttribute('align','center') var e3 = ...
2
votes
5answers
2k views

How can I check the new value of a text field on keypress?

I have a single form field and I need to be able to detect when the field changes and execute some additional code using the new value of the field. I only want to execute the code if the key pushed ...
2
votes
6answers
1k views

keyup Uppercase problem

I would like to have an input that would change to upper case on keyup. So I attach a simple event on keyup. HTML <input id="test"/> Javascript (with jQuery) $("#test").keyup(function(){ ...
1
vote
3answers
47 views

not going into Onkeylistener ?Not able to figure out

package woot.wat.wen; import android.app.Activity; import android.os.Bundle; import android.text.Layout; import android.util.Log; import android.view.KeyEvent; import android.view.View; import ...
1
vote
2answers
87 views

ZK onKeyUp with regex

I am trying to make zk textbox behave like only numeric values . For this above code works great <textbox id="telNo" xmlns:w="client" > <attribute w:name="doKeyPress_"> function(evt){ ...
1
vote
1answer
57 views

Why doesn't my text box word counting code work when I paste text with the mouse?

I am using jQuery for my application. I have used Keyup and Change events combined on a function. i.e I have a textbox and whenever I type in it the word counts comes on top of it. So basically I ...
1
vote
3answers
82 views

Create a <br /> when you press Enter

I have made a textarea form where you can change your description and like in my previus question I asked if there was any way of having banned tags. But now is there any way of when you press "Enter" ...
1
vote
2answers
136 views

Javascript onkeyup function not working

Don't know whats exactly going on, but it's definitely killing my time for nothing. Here's my javascript function : <script type="text/javascript" > function loadSponsorName() { var sp_id ...
1
vote
1answer
382 views

jQuery Cleditor get textarea value on keyup

I'm using Cleditor http://premiumsoftware.net/cleditor/docs/GettingStarted.html. I want to get the value on keyup and insert the text into another div. cleditor comes with change() event that i'm ...
1
vote
1answer
77 views

Impossible to start ACTION_SEND activity in my activitiesManager / Strange behavior of onKeyUp event

In my android application, I use my own ActivityGroup (named TabGroupActivity) in order to manage several activities in a tabHost. So, when I want start a activity, I use the following method of ...
1
vote
2answers
109 views

Take focus on next input after key up using Jquery

Note: My page has just textboxes. Nothing else. (nothing else => no other input types) $(":input[type='text']").keyup(function(event){ if(valid) { // take a focus to next input ...
1
vote
2answers
132 views

onkeyup way too slow

http://jsbin.com/ezecun/edit#javascript,html I have to write it this way because it is dynamicly made, actual code listed below. I simplified it a bit in the jsbin. Basically it takes so long to ...
1
vote
4answers
679 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; ...
1
vote
3answers
99 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
186 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
104 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" ...
1
vote
1answer
67 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() = ...
1
vote
2answers
2k 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
1
vote
3answers
235 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 ...
1
vote
1answer
526 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 ...
1
vote
2answers
328 views

How do I keep my cursor/caret from moving inside of an input text element?

I'm trying to build a form that works in a manner similar to the Google Search page, as well as Gmail and several other pages (including the this page - see the "Tags" input on the Ask Question page). ...
1
vote
1answer
229 views

$('#searchfield').keyup(function(e){

i have a little question. Is it possible to call the keyup function with an extra value? For example $('#eld').keyup(function test(e,val2){ test('','hallo'); But this will not work. Any ideas? ...
1
vote
1answer
336 views

WPF OnKeyUp in UserControl not firing

I have Window with UserControl. I subscribed for OnKeyUp event but it does not firing. Inside UserControl constructor i use method this.Focus(); But still onkeyup does not firing. What is wrong and ...
1
vote
1answer
120 views

Can jQuery dynamically change a “username” field based on a “name” field?

basically I have two input fields, "name" and "username". The idea is that the "username" field will change depending on what is entered into the "name" field - dynamically. I also need the username ...
1
vote
0answers
185 views

Asp.Net form validation onkeyup

I rewrote the standard asp.net validation javascript so some (css)classes will be set either a validator is true or false. This javascript is triggered on the "onchange" (standard asp.net behavior ...
1
vote
2answers
1k views

jQuery onkeyup event in textarea that does not fires when nothing change

I was thinking to a function that check the key value pressed, and accept only the most common characters, canc, enter, ... because i need it only for basic ascii character set (not ñ, č, chinese ...
1
vote
1answer
397 views

Onkeyup not firing in Opera when using cyrillic layout

I'm struggling to understand why the following problem appears. I have an input box and I want to attach an Autocomplete box to it. function input_set_autocomplete_to(obj) { if( obj.type != ...
1
vote
1answer
2k views

keyup() bug in Firefox and Chrome?

$('input').keyup(function(e){ var k = e.keyCode ? e.keyCode : e.which; console.log(k); }); . <input type="text" name="" autocomplete="off"/> Why keyup fires twice ...
1
vote
2answers
1k views

KeyUp jQuery in Facebook iFrame app

I'm making a facebook game and the users asked me to make the game start by pressing spacebar, because clicking on a button wastes their time. I tried to make it by this code: ...
0
votes
2answers
27 views

Make a jquery icon visible using on keyup event

Stumped at this part. I have a simple html input, and a jquery ui icon. What I want to do is have the icon hidden untill a "keyup" event of some sort is fired on the html input. Currently have the css ...
0
votes
1answer
32 views

Which interface is used to detect key events from the Dialog class (Android SDK)?

I've created a simple custom dialog that asks users to "Press a key". The purpose of this is so that I can map whatever key they press to a function in the app. Unfortunately, I can not figure out ...

1 2 3