Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Set/Delete Cookie with Checkbox?? Re: Set/Delete Cookie with Checkbox??

#103319
Taufik Nurrohman
Participant

YEAHHH!!! xD

$("input#togglePre").change(function() {
if ($(this).is(':checked')) {
$("body").addClass('prelight');
createCookie("pre", "prelight", 1000);
} else {
$("body").removeClass('prelight');
eraseCookie("pre", "prelight");
}
});

if (readCookie("pre")) {
$("body").addClass('prelight');
$('input#togglePre').attr('checked', 'checked');
}

http://jsfiddle.net/tovic/z59DP/5/