Get key code
by kuyabiye
HTML
<input />
<div id="result"></div>
JavaScript
$('input').keypress(function(e ) {
$('#result').html(e.which);
});
by kuyabiye
<input />
<div id="result"></div>
$('input').keypress(function(e ) {
$('#result').html(e.which);
});