Запоминаем в куках галочку

Плагин

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
                });
            });

Добавить комментарий

Ваш e-mail не будет опубликован. Обязательные поля помечены *

Можно использовать следующие HTML-теги и атрибуты: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>