JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<style>
span, strong, p {
padding: 8px; display: block; border: 1px solid #999; }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div id="log"></div>
<div>
<p>
<strong><span>TIKLA</span></strong>
</p>
</div>
<script>$("body").click(function(event) {
$("#log").html("Şuraya tıklandı: " + event.target.nodeName);
console.log('event')
}); </script>
</body>
</html>