$(document).ready(function() { $('.cookiestripwrap').removeClass('show'); $.get("/cookiesetting.php") .done(function(response) { response=JSON.parse(response); if(!response){ return false; } console.log(response); if(response.agree=='true'){ $('.cookiestripwrap').removeClass('show'); } else{ $('.cookiestripwrap').addClass('show'); } }); $('.cookiebtn').click(function(){ $.post("/cookiesetting.php",{'agree':true}).done(function(response){ response=JSON.parse(response); if(response.agree=='true'){ $('.cookiestripwrap').removeClass('show'); } else{ $('.cookiestripwrap').removeClass('show'); } }); }); $('.reject').click(function(){ $.post("/cookiesetting.php",{'agree':false}).done(function(response){ response=JSON.parse(response); if(response.agree=='true'){ $('.cookiestripwrap').removeClass('show'); }else{ $('.cookiestripwrap').removeClass('show'); } }); }); $('.customize').click(function(){ $.post("/cookiesetting.php",{'agree':"customize"}).done(function(response){ response=JSON.parse(response); if(response.agree=='true'){ $('.fancybox-close-small').click(); $('.cookiestripwrap').removeClass('show'); }else{ $('.fancybox-close-small').click(); $('.cookiestripwrap').removeClass('show'); } }); }); });