JSFiddle - React, Tailwind, and code Playground
by mamounothman
HTML
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script>
<input type="checkbox" class="check" /> checkbox
<input type="checkbox" class="check" /> checkbox
<input type="checkbox" class="check" /> checkbox
<input type="checkbox" class="check" /> checkbox
<input type="checkbox" class="check" /> checkbox
JavaScript
$(function(){
var test = localStorage.input === 'true'? true: false;
$('input').each(function(i, el) {
//console.log(localStorage.input);
test = (localStorage.getItem(`input-${i}`) === 'true') ? true: false;
$(el).prop('checked', test || false);
});
});
$('input').on('change', function() {
localStorage.setItem(`input-${$(this).index('input')}`, $(this).is(':checked'));
});