JSFiddle - React, Tailwind, and code Playground

by Joe

HTML

<div></div>

CSS

div {
    width: 10px;
    height: 10px;
    background-color: red;
}

JavaScript

$('div').click(function () {
    $(this).css({
        'width' : $(this).width()  * 5.2
    });
});