JSFiddle - React, Tailwind, and code Playground

HTML

<head>
<style>
p { height: 30px; width: 150px; background-color: #ccf; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p>paragraph</p>
</body>

JavaScript

$("p").mousedown(function(event){
  alert("Mouse pressed on " + event.target.nodeName);
});
$("p").click(function(event){
  alert(event.target.nodeName + " clicked");
});