I don\'t find how to get the value of a key pressed. I currently have
$(\'#info_price\').bind(\'keydown\',function(evt){ alert(evt.keyCode);
As it's told in comment it's ASCII code. To get it as character you can do:
ASCII
alert(String.fromCharCode(evt.keyCode));