JSFiddle - React, Tailwind, and code Playground
by Joshua
HTML
<script src="https://ia.lc/_js/app.js"></script>
<div data-app="app">
<input id="input" />
</div>
JavaScript
var app = APP.create('app', function(app){
return {
__construct: function(){
this.c = 2;
},
events: {
'#input': {
focus: function(){
this.style.backgroundColor = 'orange';
}
}
}
}
});
// identical to:
var app = APP.create('app', function(app){
this.c = 2;
this.events = {
'#input': {
focus: function(){
this.style.backgroundColor = 'orange';
}
}
}
});
app.$.html(app.b())