JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="element">Click Me</div>
</div>
JavaScript
$('.element').on('click', function () {
alert('I\'ll fire');
});
$(document).on('click', '.element', function () {
alert('But I wont...');
});
$('.container').on('click', function (e) {
e.stopPropagation(); // Because I'm stopping the propagation.
});