jQuery Code
only_float
is text box class Name.
$(".only_float").live("down",function(event){
console.log(event.keyCode);
});
When I press 1 from Numeric key on following mentioned image then it will Display 49 for keyCode.
When I press 1 from Numeric key on following mentioned image then it will Display 97 for keyCode..
My Question is Why different keyCode for Same Numeric Value?