JSFiddle - React, Tailwind, and code Playground
by mtenschert
JavaScript
$( document ).ready(function() {
var cookie = "a_b_test_reduce";
var getCookie = function(cname) {
var name = cname + "=";
var decodedCookie = decodeURIComponent(document.cookie);
var ca = decodedCookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') {
c = c.substring(1);
}
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return '';
}
var checkCookie = function() {
cookie = getCookie(cookie);
}
checkCookie();
if (cookie > 0) {
$('div.towns-content__hasselhoff-ad').hide();
$('div.timestamp-container').hide();
$('div.ratings-hotline-payment').hide();
$('ul.filter__list').hide();
$('alpin-ekomi-stars').hide();
$('div.cross-selling').hide();
}
});