JSFiddle - React, Tailwind, and code Playground

by rohanbhangui

HTML

<a href="http://google.com">google</a>
<div class="stuff">
    <a href="http://google.com">preventgoogle</a>
</div>

JavaScript

$(".stuff a").on("click", function(e) {
    e.preventDefault();
    alert("hello");
});