JSFiddle - React, Tailwind, and code Playground

by cookies

HTML

<input id="checkbox1" type="checkbox" />
<script>
  $( "#checkbox1" ).on( "change", function( event, ui ){
    if(this.checked){console.log("check it out!");}

  });
</script>