JSFiddle - React, Tailwind, and code Playground

by harperj1029

HTML

<fieldset>
    <legend>Non intrusive javascript</legend>
    <button>Alert me</button>
</fieldset>

CSS

fieldset{
 border:solid 1px gray;   
}

JavaScript

$(function(){
    $('button').click(function(){
        alert('Much better and cleaner'); 
    });
});