JSFiddle - React, Tailwind, and code Playground
by ariehg
HTML
<a href='#' id='a'>aaa</a>
JavaScript
function Listener(){
this.handleEvent = function(e){
alert(e.type);
}
}
document.getElementById('a').addEventListener('click',new Listener,false);