JSFiddle - React, Tailwind, and code Playground
by jakie8
HTML
<div id="test">HELLO!</div>
CSS
#test{
color:red;
font-size:24px;
}
JavaScript
$('#test').click(function(){
$(this).text('WIN!');
});
by jakie8
<div id="test">HELLO!</div>
#test{
color:red;
font-size:24px;
}
$('#test').click(function(){
$(this).text('WIN!');
});