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