JSFiddle - React, Tailwind, and code Playground

by btipling

HTML

<div id="foo"></div

JavaScript

function Listener() {
    document.getElementById("foo").addEventListener("click", this.handleClick.bind(this));
}
Listener.prototype.handleClick = function (event) {
    console.log(this); //logs Listener {handleClick: function}
}

var listener = new Listener();
document.getElementById("foo").click();