JSFiddle - React, Tailwind, and code Playground
by finfin
HTML
<html>
<head>
<title>test</title>
</head>
<body>
<div style="background:#aaa;" id="t">abcdefg</div>
</body>
</html>
JavaScript
$(function(){
myObj = {
callme: function() {console.log("callme!");},
init: function() {
_this = this;
$("#t").click(function(){_this.callme();});
}
}
myObj.init();
});