JSFiddle - React, Tailwind, and code Playground

HTML

<span class="populate" onclick="populate();" href="?id=1">Hello</span>

CSS

.populate {
    cursor: pointer;
}

JavaScript

function populate(event) {
    var event = event || window.event;
    console.log(event);
    var src = event.srcElement;
    var href = src.getAttribute('href');
    alert(href);
}