JSFiddle - React, Tailwind, and code Playground

by JoeQuery

HTML

<div id="joe" class="person">

</div>

<div class="cat" id="odin">
</div>

CSS

#joe{
  width: 200px;
  height: 200px;
  background-color: yellow;
}

#odin{
  width: 200px;
  height: 200px;
  background-color: orange;
}

JavaScript

$(document).ready(function(){
    var $joe = $("#jaoeuaoeuoe");
    console.dirxml($joe);
    $joe.html("Goodbye");
});