JSFiddle - React, Tailwind, and code Playground
HTML
<a onclick="onClick(this)">Click me</a>
JavaScript
function onClick(el) {
console.log(el, this);
}
<a onclick="onClick(this)">Click me</a>
function onClick(el) {
console.log(el, this);
}