JSFiddle - React, Tailwind, and code Playground

by angstrey

HTML

<div class="box">
</div>

CSS

.box {
    width: 200px;
    height: 30px;
    background: yellow;
    border: solid 1px black;
}

JavaScript

$('.box').click(function(){
    var $this = $(this),
        count = $this.data("count") || 0;
    
    count += 1;
    $this.text("Test" + count.toString());
    
    $this.data("count", count);
});