Log in

View Full Version : skip Intro page? !



Mahsa
12-29-2017, 12:06 PM
Hi everyone!

I'm designing a website that requires an introduction page for new visitors, but I'd like to give the option to always skip the intro page after you've seen it once. I've never used cookies though I'm sure its the only way to do this.
Any ideas?

The intro page itself is plain html. Its not a flash intro or anything.

Thanks!
Mahsa

Deadweight
12-29-2017, 03:25 PM
Yeah I think all you need is this (well for the quick way and no checks):


window.onload = function() {
// Not played
if ( localStorage.getItem('skipIntro') == null ) {
//Play intro
localStorage.setItem('skipIntro', true);
} else {
// Already Played
}
}