JSFiddle - React, Tailwind, and code Playground
HTML
<span class="populate" onclick="populate(event);" href="?id=1">Hello</span>
CSS
.populate {
cursor: pointer;
}
JavaScript
function populate(event) {
var src = event.target || event.srcElement;
var href = src.getAttribute('href');
alert(href);
}