JSFiddle - React, Tailwind, and code Playground

by webchemist

HTML

<h1>TEST</h1>
    <svg id="test">
        <circle cx="50" cy="50" r="40"/>
    </svg>

JavaScript

$(document).ready(function(){
    $('circle').css('fill','blue'); 
});