Tack
.page-shadow {
display: none;
}
jQuery(document).ready(function($) {
// Counter
var counterTimer;
function counter(time) {
time–;
if (time >= 0) {
counterTimer = setTimeout(function() {
$(”#secondsBack”).html(time);
counter(time);
}, 1000);
} else {
$(location).attr(’href’,”https://coffeecenter.se”);
}
}
counter(5);
});