JSFiddle - React, Tailwind, and code Playground

by Tom Randolph

HTML

<button id="element">Button</button>

JavaScript

(function(thingz, $) {
    var thingalert = function() {
        alert('hello world');
    };
   
	thingz.anotherthing = function(event) {
		element = $(event.target);
		element.off('click', this);
	};
})(window.thingz = window.thingz || {}, jQuery);

$(function() {
    $("#element").on('click', thingz.anotherthing);
});