I have made a HTML and CSS page which showcases the features of my web app. Now I want this page to load only for new visitors. If a returning visitors vists my domain, it s
Simple - add the following code to your landing page:
if (localStorage.getItem("visited")) {
window.location.href = "webPlatform.html";
}
localStorage.setItem("visited", "true");
This checks if the localStorage
variable exists - if it does, the user is redirected - if not, the variable is set.