$("input").keypress(function(){
//this code executes when the keypress event occurs.
});
$(this).keypress((e) => {
if (e.key === "a") alert("you pressed a");
else alert("you pressed " + e.key);
});
//Console log any key pressed into an input field with the class "topSearch"
$(".topSearch").keyup(function (e) {
console.log(e.key);
});