JSFiddle - React, Tailwind, and code Playground

HTML

<div id="test"></div>
<div id="test2"></div>

CSS

#test
{
    background:red;
    height:20px;
    width:40px;  
}
#test2
{
    background:green;
    height:20px;
    width:20px;  
}

JavaScript

$(document).ready(function(){
    $("#test").resize(function() { alert('hi'); });
    $("#test").width(80);
    $("#test").width(212);
});