Плагин
https://raw.githubusercontent.com/carhartl/jquery-cookie/master/src/jquery.cookie.js
// read the current/previous setting
$("#dont_show_message").each(function() {
var name = $(this).attr('name');
if ($.cookie(name) && $.cookie(name) == "true") {
$(this).prop('checked', $.cookie(name));
}
});
// event management
$("#dont_show_message").change(function() {
var name = $(this).attr("name");
$.cookie(name, $(this).prop('checked'), {
path: '/',
expires: 365
});
});