-5

For example, I have pages page-A.html, page-B.html, page-C.html. When I click on the link in page-A, I want to move on to page-B and page-B will automatically move to page-C in 3 seconds without any action. So, how can i create this page-B ?

Vitaly
  • 1
  • 1

1 Answers1

0

Javascript's setTimeout method will execute code after a delay. On Page B:

setTimeout(function(){window.location='page-C.html';},2000);
Matt S
  • 14,976
  • 6
  • 57
  • 76
Cylexx
  • 346
  • 1
  • 10