var cssString = ` `; var htmlString = `
Ik ben 18 jaar of ouder en accepteer cookies van de site.
YesNo
Deze site kan erotische content bevatten.
Close

English Terms

`; var cookie = document.cookie.indexOf('plus18cookie'); if(cookie == "-1"){ $(document.body).append(cssString); $(document.body).append(htmlString); $(document.body).addClass("plus18-overflow"); } $("#plus18-terms-button").click(function(){ $("#plus18-contentblock").hide(); $("#plus18-terms").show(); }) $("#plus18-terms-close").click(function(){ $("#plus18-contentblock").show(); $("#plus18-terms").hide(); }) $("#plus18-decline").click(function(){ window.location.href = 'https://www.misolo.com'; return false; }) $("#plus18-accept").click(function(){ $(document.body).removeClass("plus18-overflow"); $("#plus18-overlay").hide(); var now = new Date(); var time = now.getTime(); var expireTime = time + 10000000; now.setTime(expireTime); document.cookie = 'plus18cookie=1;expires='+now.toGMTString()+';path=/'; })