0
votes
0answers
16 views

Editing navigation of this website

http://www.madeinebor.com/themes/sliddr/index.htm#/logo As you see this website works by pressing space bar and some other keys, how can I change it to clicking. So when ever the user click in empty ...
6
votes
2answers
72 views

Capturing both special keys and key case within Javascript events

I've been doing a bit of work with Javascript key events (keyup, keydown, keypress) and have concluded that each has their advantages and disadvantages when trying to determine what key(s) the user ...
-2
votes
0answers
37 views

Difficulties with keyCodes and Javascript [closed]

I've successfully used keyCodes as a proof of concept at pingpongwars.tumblr.com, but at another site they seem to fail miserably - all but one of the keyCodes is functional, even though all of them ...
0
votes
3answers
59 views

Why does my computer show me that my keycode for “W” is 0 in javascript?

i am building a program in JavaScript while i tried to add keyevents.But when i was done and tried to move my object it dident move. I tried to figure out what the problem was while i tried to move a ...
0
votes
0answers
27 views

how can i bypass gdk event keycode in webkitgtk

im working webkitgtk with gtklanucher. and i want add key remocon red button. it's VK_RED(403). i tryed gdk_keymap_get_entries_for_keyval() func. but i can't found VK_RED value. please help me. ...
0
votes
1answer
50 views

Keydown keycode not returning expected result

I am a bit confused by the character codes returned by the keyCode property on the keydown event. I was expecting the codes to align with the ascii codes. A lot of them seem to do, but I am getting ...
4
votes
4answers
114 views

keyCode issue - Can't prevent entering the % character

In my HTML page there is an input text field. I want only number key and left/right arrow on the keyboard can be entered. I tried the following JavaScript but met an issue. <input ...
0
votes
1answer
167 views

e.keycode is undefined in firefox 19.0.2 ,chrome 25.0.1364.172 m,IE 8

I want the charector to be monitored by a regular expression. $('#searchContent').keyup(function(e){ e = e || window.event; var patt =/\w/g; var key = ...
1
vote
1answer
204 views

event.keyCode not working in Firefox

I'm having a problem with a Login page I'm developing on ASP.net C#. The form works on IE, but not Firefox. Here's my sample: <%@ Page Language="c#" Inherits="ClubCard.loginClubcard" ...
2
votes
1answer
42 views

javascript key detection not adding latest character

so I basically have a function that detects the key that the user presses, and it submits a form whenever the user hits the space bar (don't ask why). Here is my javascript: ...
0
votes
3answers
101 views

I've created an “onclick” event handler, now how do I create an event handler for “Enter” key?

I took this simple code from Ch 3 of OREILLY's "Head First HTML5 Programming". I made a "few" adjustments, but nothing major. As you see, it's merely a simple little playlist manager with a few ...
0
votes
1answer
144 views

textbox detect enter key after tab key selects autocomplete word

I have an asp:TextBox with AutoCompleteExtender attached. This is my code txtSearch.Attributes.Add("OnKeyPress", "ProcessKeyPressed()") function ProcessKeyPressed() { if(event.keyCode == 13) ...
-1
votes
3answers
186 views

enter key pressed call javascript function

I have an asp:TextBox on my page and I would like to detect the enter key to call a javascript function. This is what I have: Codebehind txtSearch.Attributes.Add("OnKeyPress", "ProcessKeyPressed()") ...
0
votes
3answers
443 views

javascript regex to disallow all special characters

Here is a fiddle to start - http://jsfiddle.net/zuVpx/1/ Javascript code: <script> function validate(e) { var regex = new RegExp("[a-zA-Z0-9]"); var key = e.keyCode || ...
1
vote
1answer
155 views

Using charCodeAt() to retrieve character from KeyCode

I am trying to write a Javascript/jQuery function that will automatically bind keyboard shortcuts to my webpage. The method I have in mind is something like the following: Loop through all elements ...
0
votes
1answer
269 views

pass the value of a textbox as a parameter to a javascript function without submit button

I am writing because I have a problem with the passage of the value of a textbox without the submit button, but managing the event from the keyboard. The goal is to launch the function when I click ...
0
votes
0answers
57 views

Triggering Firefox add-on programmatically

I'm using a firefox add-on that can be activated with a keycode combination - In this case Alt+W The addon is here: https://addons.mozilla.org/en-US/firefox/addon/closen-forget/?src=search I want to ...
1
vote
2answers
91 views

Can't make sense of mozilla keycode reference

I'm attempting to simulate some keyboard keycodes (Alt+w) using the initKeyEvent event: evt = document.createEvent("KeyboardEvent"); evt.initKeyEvent("keypress",true,true,window,0,true,0,0,?,?); ...
4
votes
2answers
142 views

JavaScript: Avoiding hardcoded keycodes [duplicate]

Possible Duplicate: JavaScript event.keyCode constants This is my code: $button.on('keyup', function (event) { // Detect an Enter keypress if(event.keyCode === 13) { ...
1
vote
2answers
100 views

Can javascript generate executable javascript code?

This is a sample javascript code to alert the user if he clicks shift + 1 (or 2,3...9) But as you see this code is almost the same. a = window.event.keyCode; var b = window.event.shiftKey if (a == ...
2
votes
2answers
689 views

Space bar keyCode(32) not working on Mozilla Firefox

Enter keyCode(13) works fine on all browsers. Space bar keyCode(32) I tested on Chrome works fine but not responding on Firefox. I used the following code: <script type="text/javascript" > ...
0
votes
2answers
127 views

Check if keydown event for umlaute

I want to check via eventListener if the pressed key is an umlaut (ä, ö, ü). The problem is that the charCode/keyCode is alsways 0 and if I am not mistaken the value is also used for some control ...
0
votes
1answer
49 views

Location on screen corresponding to keycode

I'm trying to create code that allows me to press a button on the keyboard and have a corresponding circle appear on the screen. The position would be relevant to the key pressed. For example, the ...
6
votes
4answers
114 views

How to detect that a space was backspaced or deleted

I need to find a way to detect if a space was deleted or backspaced, and run a function if that is the case. I am working on this in JavaScript / jQuery. I know I can get the delete or backspace key ...
0
votes
3answers
326 views

javascript keycodes reference [duplicate]

Possible Duplicate: FULL list of JavaScript keycodes Where can I found the official reference of the key codes in javascript? Google founds only gappy tables. Especially I'm looking for ...
0
votes
1answer
62 views

Check for Bakcspace or Delete Key [closed]

I'm playing with a textarea and trying to make it so the user cannot exceed maxLength unless the key pressed is a backspace or delete key. The problem is my keyCode conditional is always coming out to ...
0
votes
0answers
152 views

how to work DEL Key on mozilla firefox

i need the help for my problem in my asp.net MVC3 application i have a textbox which is validate for currency format ($228.00) but in this text box don't work the DEL key because "." and delete key ...
0
votes
1answer
47 views

JavaScript keypresses giving weird responses

I've been taking input from the arrow keys for days now and it hasn't been giving me a problem. However, when I try to take input from the letter keys, they give strange and inconsistent responses. ...
3
votes
2answers
803 views

Determine if JavaScript e.keyCode is a printable (non-control) character

I'd just like to know the range(s) of JavaScript keyCodes that correspond to typeable characters; or alternatively, the range of non-typeable (control) characters like backspace, escape, command, ...
0
votes
2answers
451 views

js disabling backspace functionality in firefox

I have following javascript to prevent user from entering invalid characters into a text field. It's working well in chrome but not in firefox. It's preventing the backspace key to be entered in the ...
1
vote
3answers
87 views

how to distinguish which 'Enter' key was pressed?

So I've got this textarea which listens for Enter keypress event. But I only want it to respond to the Enter key being pressed on the number pad not the one next to the letters. What's a method I can ...
0
votes
2answers
170 views

Can I fake a CE-HTML key constant from javascript?

I would like to fake i.e trigger a keycode event which matches a custom keycode defined in the CE-HTML standard for NetTV. Is this possible from the javascript console in chrome / firefox? I tried: ...
4
votes
4answers
252 views

What is the keyCode for “$”?

I am trying to disable all other characters from being entered in text input. Since to get the $ you have to press the shift-key and the 4-key. I am not sure how you would get the keyCode for ...
0
votes
1answer
256 views

JS: What keyboard keys are specified for key codes in intervals 146-185, 193-218?

What keyboard keys are specified for key codes in intervals 146-185, 193-218? What keys from this intervals are often used by users? You can get key codes from event.keyCode or event.which from ...
0
votes
2answers
450 views

Change mouse keycode - jquery

As I have heard, different browsers assign different keycode values to mouse buttons on mousedown event. I have tried this in Chrome and it worked: $('a').mousedown(function(f) { if (f.which == ...
0
votes
3answers
277 views

JavaScript move delay and multiple keystrokes

Here is my problem: http://testepi.kvalitne.cz/test/ I do not want the delay between a keypress and the movement of the square. I would also like to know how to move diagonally (pressing two keys at ...
1
vote
1answer
47 views

Save key stroke events to spreadsheet +timings

As part of my college dissertation I am trying to test out how usable several different types of number entry keyboard interfaces are. To do this I need to record each key press my participants make ...
1
vote
1answer
557 views

How do I capture keyboard events while watching an HTML5 video in fullscreen mode?

I need to know when the user presses the escape key when watching an HTML5 video in fullscreen mode. Unfortunately any configured listeners on the document don't apply since when the user is watching ...
0
votes
1answer
154 views

How to convert javascript keycode to proper keycode?

Is there a way I can convert a javascript keycode into one that is used by C#? For example 87 is the character 'w' in javascript, but in C# it's 57. And 77 is 'm' whereas it's 4D in C#. Is there a ...
2
votes
3answers
482 views

Javascript/jQuery: Unable to get proper keyCode when capsLock is ON

I'm trying to determine the proper key/char code in javascript when a key is pressed. It seems that when the CapsLock key is on, lowercase letters are not detectable. Try the combinations: 1. a ...
0
votes
1answer
246 views

How can I add <br /> label after every enter/new line in a form

I'm making this little project with fwrite (long story, and I can't use DB's). The problem is that I wanna do so every time a person submit something, there have to be an tag added insted of every ...
0
votes
2answers
2k views

Javascript numberpad keycode parsing

I am attempting to parse keydown events from the numberpad with the following: $('#myDiv').keydown(function(e) { val = String.fromCharCode(e.which) }); The problem is that keypad 0-9 return ...
0
votes
2answers
116 views

javascript - calculate “true” keyCode

When I press a key on my keyboard, I can get the keyCode of that key using e.keyCode. But the keyCode I get does not consider the pressed alt/ctrl/shift keys, wich modify the key code. Fortunately, I ...
4
votes
3answers
848 views

javascript onclick trigger key click (using jQuery)

How can I activate a "left" or "right" keyboard arrow push on click of a div. So for example $('.item').click(function(){ keyCode(37); }); (I know that 37 is left)
0
votes
2answers
435 views

Keycode for “Delete” triggers browser's back button — jQuery

I'm building a virtual keyboard that assigns images to keycodes, and appends them in spans after a keydown event. Problem comes with the DELETE functionality. if (e.keyCode == 8) { ...
1
vote
1answer
226 views

How to map a character to IE/Mozilla keycodes to use with Javascript keyup events?

I'm trying to get the Mozilla/IE keycode for a arbitrary character in Javascript. Ideally, I'd use charCodeAt() to retrieve the keycode for a given character, but this yields the ASCII value which is ...
0
votes
1answer
205 views

Reacting when user presses ENTER

I'm working on an application where it should be possible to run a function if the user presses ENTER regardless of where the focus is on the page (eg. in a textbox or on a button etc). Below is the ...
0
votes
1answer
2k views

How to catch event.keyCode and change it to another keyCode?

I have checked other questions here at SO, however they do not answer my question. I want to simply catch certain keyCode and replace it with another. I am working with characters, not white spaces, ...
0
votes
3answers
136 views

Small and Cap case in js

I have a basic typing tutor built in javascript. It has two portions: The first portion contains the text/lesson to type and the second portion has keyboard with keys. I code like this: ...
1
vote
2answers
750 views

How to retrieve keyCode and charCode from a jQuery event object?

The javascript event object offers keyCode() and charCode() methods such that charCode() returns 0 for keys that don't cause a character to be displayed like enter, key up, key down, delete, ...

1 2