Tagged Questions
0
votes
3answers
56 views
jQuery - even.keyCode not being recognized correctly in firefox?
the code below works properly in IE and Chrome (latest versions)
$('#searchBox').keyup(function () {
var searchTxt = $(this).val();
// if item contains searchTxt,
if ...
0
votes
0answers
58 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
93 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,?,?);
...
2
votes
2answers
719 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
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
2answers
463 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
2answers
893 views
key codes in different browsers? jquery
All I have found about this is that there are inconsistencies among different web browsers when it comes to key codes.
I have the following code that runs fine when pressed enter in Safari, Opera and ...
4
votes
2answers
401 views
How to have “jQuery.Event” work on Firefox?
I'm writing a script which triggers an artificial keydown event with keyCode 37 when
button is clicked.
The following script works fine on IE, Safari, and Chrome, but it doesn't work on Firefox and ...
0
votes
1answer
293 views
Flash: KeyboardEvent keycodes work in Flash Player, but not the browser
I'm using ActionScript to listen for key presses and route to a method to handle them. It works fine in Flash Player Debugger 10.1, but does not work with the SWF in a browser.
I've tried it with ...
0
votes
4answers
1k views
event.which doesnt workin in Firefox
I want a script to verify if the keypressed is 'spacebar', keycode 32. I noticed that IE uses another function names.
I tryed a lot of solutions found here and this:
event = event || window.event // ...
1
vote
0answers
66 views
Firefox Extension preference window onsynctopreference Button
I have a XUL button that once clicked listens for a keystroke. When a keystroke is captured, it sets the label of the button to the keyCode of the keystroke. I want to save this value to the ...
2
votes
1answer
585 views
Firefox 4 and Keycode for special characters
So in Firefox when i do a key combination like: SHIFT + "," which would equal "<" the key code comes back as '0'. Same thing is true for keys: "." ">" and many others. Anyone have any ideas?
2
votes
1answer
771 views
Chrome 10: KeyEvent or something similar to Firefox's KeyEvent
In Firefox 3.6 and 4.0 I can compare a KeyboardEvent's keyCode against predefined constants for keys stored inside of the global KeyEvent object (which is part of he DOM3 specification). KeyEvent is ...
2
votes
3answers
1k views
Javascript Shift+Enter (Firefox)
Had a look and found some things on this, but nothing seems to work as I'd like it.
Initially I had my solution working with internet explorer and chrome, but not firefox (which is unsatisfactory for ...
5
votes
2answers
2k views
I have a problem with keydown event and autocomplete in Firebox on mac
This is driving me nuts. Its a tough one to explain but Ill have a go.
I have one input text field on the front page of my site. I have coded a keydown event observer which checks the keyCode and if ...