JSFiddle - React, Tailwind, and code Playground
by uedatakuya
HTML
<p id="hello" class="world">
Hello, World
</p>
JavaScript
document.getElementById("hello").style.color = "red";
console.log($("#hello").style("color", "red"))
by uedatakuya
<p id="hello" class="world">
Hello, World
</p>
document.getElementById("hello").style.color = "red";
console.log($("#hello").style("color", "red"))