
One-time use Intial entry page to web
Try looking into use of cookies
http://tech.irt.org/articles/script11.htm
http://www.webreference.com/js/column8/property.html
For example: - 3 pages: index.html (checks for cookie); splash.html (splash
screen with picture); main.html (your main page)
If the cookie exists redirect to the main page (using location.href or
location.replace [so when people click the back button on the toolbar it
doesn't reload the same page])
If it doesn't redirect to the splash page (same method) and add the
following between the <HEAD> and </HEAD> tags:
<META http-equiv="refresh" content="5; url=main.html">
Quote:
> I'm new to jscript and wanted to see if there was a way to
> use jscript to bring up a "splash page' (product picture)
> that would appear for 5 seconds (or until the user mouse
> clicked) only, the first time for someone came to my web
> site. After the initial display the user would only see
> the home (index.htm) page.
> I would appreciate any solution insight/code examples
> offered...
> Thanks, John