JSFiddle - React, Tailwind, and code Playground

HTML

<a href="http://example.com" onclick="myFunction(event,this.href,this.textContent)">
  My link
</a>

JavaScript

function myFunction(event,getAttr,text){
event.preventDefault();
console.log(getAttr,text);
}