JSFiddle - React, Tailwind, and code Playground
by meeky333
HTML
<input type="checkbox" checked="checked" value="true">
JavaScript
$("input").on("click", function () {
alert($(this).attr("value"));
});
by meeky333
<input type="checkbox" checked="checked" value="true">
$("input").on("click", function () {
alert($(this).attr("value"));
});