Tagged Questions
The fromcharcode tag has no wiki summary.
2
votes
2answers
287 views
JavaScript Key Codes
I'm working with a JavaScript routine I didn't write. It is called from a text box's onkeydown attribute to prevent unwanted keystrokes.
The first argument is apparently not used. The second argument ...
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
3answers
1k views
VBScript chr() appears to return wrong value
I'm trying to convert a character code to a character with chr(), but VBScript isn't giving me the value I expect. According to VBScript, character code 199 is:
�
However, when using something ...
0
votes
1answer
31 views
jQuery : event.which returns different codes when a number is pressed from numpad and when from the numbers keys above alphabets
When I press 8 from the numbers present above the alphabets on the keyboard, event.which returns 56, but when I press 8 from the numpad given at the side, it returns 104 (ascii of 'h'). I was doing ...
0
votes
2answers
82 views
Add subscript to numbers on the fly as user types using jQuery
Is it possible to add a subscript tag to numbers as a user types into an textbox, for example if a user was to type in H20 it would instantly of converted to H20. I am looking for a solution using ...
0
votes
1answer
150 views
How to convert character entity references into decimal (charCodes) in ActionScript
Is there a native method for converting character entity references into charCodes in ActionScript? For example, ∠ has a decimal or numeric entity reference of ∠. I assume that the ...
0
votes
1answer
28 views
How do you use a key to generate new code when using charCodeAt()?
I have been working on my science fair project that is due in 3 days and I need help. I using charCodeAt(), however I don't know how to write the code that will use the key and charCodeAt() to create ...
0
votes
0answers
56 views
How do I store keys pressed
I would like to store keys pressed when I listen out for the keyDown on the stage. I can add the listener fine, but I'm not getting the character I want out of the event to store it into a string.
...