JSFiddle - React, Tailwind, and code Playground
by vvv vvvv
HTML
<p>hello</p>
CSS
body {
background-color: yellow;
}
JavaScript
var foo = {
init: function () {
//choses...
this.nom ="Martin";
cObj = this;
$('body').click(this.truc);
},
truc: function() {
//choses...
alert(cObj.nom);
}
};
foo.init();