Hello there,
I#ve got a quick question…
I try to get a code running, but it doesn’t work… I am sure, I messed something up (I am new to Javascript)…
I try to hide an background image, after returning to the page for a second time…
$(window).load(function () {
$(function () {
if (!sessionStorage.getItem("runOnce")) {
function () {
$('.et_parallax_bg').css("display", "none");
}
sessionStorage.setItem("runOnce", true);
}
});
});
perfect would also be to set a (Date.now()) of 60 Minutes or something, but I am lost…
Any help would be amazing…
Thanx!
Michael