JSFiddle - React, Tailwind, and code Playground
by inser
HTML
<div>
<p id="test">This is the test</p>
</div>
CSS
#test {
color: red;
}
JavaScript
var el = document.getElementById("test");
alert(el.innerHTML);
by inser
<div>
<p id="test">This is the test</p>
</div>
#test {
color: red;
}
var el = document.getElementById("test");
alert(el.innerHTML);