JSFiddle - React, Tailwind, and code Playground

by creed88

HTML

<div id="thing">Click Me</div>

CSS

#thing {
    
    width: 200px;
    height: 20px;
    background: #f00;
    padding: 20px;
    color: #fff;
    font: 18px arial;
    text-align: center;
}

JavaScript

$(function(){
//BOOTH CLICK
    $(this).on('click touchstart','#thing',function(e){
        $(this).text('coucou');
    });
    
});