$(document).ready(function(){ if ($.cookie('cookiespopup') == null) { document.getElementById('cookiewarn').style.height='48px'; $('#container').css('margin', '48px auto 0px auto'); setTimeout(function() { document.getElementById('cookiewarn').style.height='0px'; $('#container').css('margin', '0px auto 0px auto'); $.cookie('cookiespopup', 'yes', { path: '/' }); }, 10000); } $('#happybutton').click(function() { document.getElementById('cookiewarn').style.height='0px'; $('#container').css('margin', '0px auto 0px auto'); $.cookie('cookiespopup', 'yes', { path: '/' }); }); });