Link to home
Start Free TrialLog in
Avatar of sminni
sminni

asked on

Autorun pages

I want to build a power-point like presentation as a series of web-pages so that the user does not have to load any special software for viewing.

Can it be done on as HTML pages which
autochange after a given time interval

I am totally new to HTML/Web page dev.
ASKER CERTIFIED SOLUTION
Avatar of AdiF
AdiF

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of chteril
chteril

you can also do:
<head>
function refreshIt(){
//wait 20 seconds and call take you to slide2.html
   setTimeout("document.location=slide2.html;
",20000);
    }
</head>
<body onload='refreshIt();'>

//the advantage with this version is that slide2.html is called 20 seconds AFTER the current page is 100% loaded.

With the last answer, slide2.html is called 20 seconds after the current page begins to be loadded.
Avatar of sminni

ASKER

Sorry for the delay
but I am unable to work in this site
for some wierd reason

I wanted to award points to Adif & Chteril but could not find out how to do so
At present I am awarding all to Adif