JSFiddle - React, Tailwind, and code Playground

HTML

<textarea id="beigeBox"></textarea>
<div id="orangeBox"></div>

CSS

#beigeBox {
    width:200px;
    height:100px;
    background-color:beige;
}
#orangeBox {
    width:200px;
    height:100px;
    background-color:orange;
}

JavaScript

$(function () {
    $('#beigeBox').keypress(function(event) {
        
			alert("In keydown handler");       
        

                if (event.which == 68) {
                    event.preventDefault();
                    alert("Got 68");
                }
           	
	});
    
    $('#orangeBox').click(function() {						
			alert("orangeBox clicked");
	});
    
});