JSFiddle - React, Tailwind, and code Playground

by kasperfish

HTML

<div id="section" >
    <h1>hello</h1>
</div>

JavaScript

alert('jquery '+$("#section h1").html());

v=document.getElementById("section").getElementsByTagName("h1");

alert('javascript '+v[0].innerHTML);