Display alert on keyPress
HTML
<!-- Display alert on keyPress -->
<input type=text id="tbx"></input>
JavaScript
$(document).keydown(function(){
alert("Displaying alert on keypress");
});
<!-- Display alert on keyPress -->
<input type=text id="tbx"></input>
$(document).keydown(function(){
alert("Displaying alert on keypress");
});