in reply to Timer for web page display
Do you want to submit the quiz? Are you forcing users to have JavaScript enabled? If so, you can do something like the following (untested):
# in head part of html output <SCRIPT LANGUAGE="JavaScript"> <!-- setTimeout(1200,'document.form_name.submit()'); // --> </SCRIPT> # and when defining the form, give it a name <FORM ACTION="wherever" NAME="form_name" method="post">
That should submit the form for you after 20 minutes.
If you just want to load a new page, look at META redirects.
cLive ;-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Timer for web page display
by TGI (Parson) on Jul 17, 2001 at 03:00 UTC | |
by mugwumpjism (Hermit) on Jul 17, 2001 at 04:17 UTC |