View Single Post
Old 08-21-2007, 01:21 PM   #26
Nogg
Literate!
Nogg knows what time it isNogg knows what time it isNogg knows what time it isNogg knows what time it isNogg knows what time it isNogg knows what time it isNogg knows what time it isNogg knows what time it isNogg knows what time it isNogg knows what time it isNogg knows what time it is
 
Posts: 256
Karma: 2247
Join Date: Mar 2007
Device: PRS-500
ns66:
One thing occurs, and this is just a shot in the dark, but the
var keyCode = part.key.charCodeAt(0);
line may be consuming that character, thus not passing it on to the doDigit function.

Try adding
var keyCode2 = part.key.charCodeAt(0);
just above
var keyCode = part.key.charCodeAt(0);

and see if it still works when you have e>10
Nogg is offline   Reply With Quote