JSFiddle - React, Tailwind, and code Playground

by jeremyblalock

HTML

<a id='el' href='#'><span class='sub'>Click Me.</span></a>

JavaScript

$(document).on('click', '#el', function(e) {
    console.log(e);
    return false;
});