Display alert on keyPress

by Chandana Thota

HTML

<!-- Display alert on keyPress -->
<input type=text id="tbx"></input>

JavaScript

$(document).keydown(function(){
    
    alert("Displaying alert on keypress");
    
});