JSFiddle - React, Tailwind, and code Playground

by Mehmet Alp

HTML

<h3>Label Örnek</h3>
<label>
<input type="checkbox" name="name" value="1">
<span>ceviz.net-Opera</span>
</label>
<br>
<h3>jQuery Örnek</h3>
    <li><input id="checkBox" type="checkbox" value="1"><p>deneme</p></li>

JavaScript

$("#checkBox").change(function () {});
$("li p").click(function () { $("#checkBox").click().change(); });