JSFiddle - React, Tailwind, and code Playground

by Rich Costello

JavaScript

let PageHandler = {
    id: "123456",
    init: function() {
        document.addEventListener("click",
                event => this.doSomething(event.type), false);
	},	
      doSomething: function(type) {
          console.log("Handling " + type  + " for " + this.id);
  } 
};