JSFiddle - React, Tailwind, and code Playground

by Ankit Patidar

HTML

<div class="quote-box-col14">
<label >SEO</label>
<input type="checkbox" />
</div>
<div class="quote-box-col14">
<label >SEO</label>
<input type="checkbox" />
</div>
<div class="quote-box-col14">
<label >SEO</label>
<input type="checkbox" />
</div>
<div class="quote-box-col14">
<label >SEO</label>
<input type="checkbox" />
</div>

CSS

.checked {
    margin:30px;
}

JavaScript

$('input[type="checkbox"]').change(function() {
    if (this.checked) {
        $(this).addClass('checked');
    } else {
        $(this).removeClass('checked');
    }
});