Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q603 How can I create a "slideshow" using html files (not images) which move to the next page after five seconds?

You are here: irt.org | FAQ | JavaScript | Image | Q603 [ previous next ]

In each page do something like:

<script language="JavaScript"><!--
function go() {
    location.href = 'nextpage.htm';
}
//--></script>

<body onLoad="setTimeout('go()',5000)">

©2018 Martin Webb