Собственно я совсем начинающий в создании сайтов
<script src="https://cdn.jsdelivr.net/npm/jquery.cookie@1.4.1/jquery.cookie.min.js"></script>
<div id="ch">
<label><input id=ch1 type="checkbox">Checkbox</label>
<label><input id=ch2 type="checkbox">Checkbox</label>
<label><input id=ch3 type="checkbox">Checkbox</label>
</div>
<script type="text/javascript">
function saveChecked() {
$.cookie(this.id, this.checked);
console.log($.cookie(this.id));
};
window.addEventListener('load', function(e) {
document.querySelectorAll('#ch input[type=checkbox]').forEach(function(i) {
i.onchange = saveChecked;
i.checked = $.cookie(i.id) === 'true';
})
});
</script>
$.cookie(this.id, this.checked);
el.checked = $.cookie(el.id);
[].forEach.call(document.getElementsByClassName('closebtn'), function(i) {
i.onclick = function() {
var div = i.parentNode;
div.style.opacity = '0';
div.style.display = 'none'
}
})