JSFiddle - React, Tailwind, and code Playground
HTML
<div id="redbox" class="red">
hajkldjfs
</div>
CSS
.red{
background:red;
display:block;
width:100px;
height:100px;
}
.expanded{
background:blue !important;
display:block;
width:100px;
height:100px;
}
JavaScript
$(function() {
var id = window.location.hash;
$(id).addClass('expanded');
});