JSFiddle - React, Tailwind, and code Playground

by Matt Ball

HTML

<button id="clickme">Click to toggle</button>

<div id="antivirusAlertDiv">
    Stuff
</div>

JavaScript

$(function ()
{
    $('#clickme').click(function ()
    {
        $('#antivirusAlertDiv').toggle();
    });
});