function agree(obj){ $ = jQuery; //if($(obj).prev().prop("checked")){ if($('#over18').prop("checked")){ //$.cookie('name', 'test', { expires: 36500, path: '/' }); $.cookie('is_adult', '1', { expires: 1, path: '/' }); } $.fancybox.close(); } jQuery(function(){ $ = jQuery; if($.cookie('is_adult') != '1'){ $.fancybox.open({ modal : true, type : 'inline', src : '#notice', }); } });