»
AnglaisFrançaisVietnamien

Imprimer - Dynamic Timed Redirect - JavaScriptBank.com

Version complète: jsB@nk » Snippet » Dynamic Timed Redirect
URL: https://www.javascriptbank.com/dynamic-timed-redirect.html

Dynamic Timed Redirect © JavaScriptBank.comRediriger l'utilisateur vers une autre page Web, après un nombre de secondes, tout en affichant un compte à rebours dans le document titre représentant le nombre de secondes avant la redirection.

Version complète: jsB@nk » Snippet » Dynamic Timed Redirect
URL: https://www.javascriptbank.com/dynamic-timed-redirect.html



JavaScript
<script>// Created by: Jon Brown :: http://allthingsrunescape.freewebs.comvar c=5;var t;function timedCount() {  document.title='JavaScriptBank.com | Redirecting in ' + c + ' seconds';  c=c-1;  t=setTimeout("timedCount()",1000);  if (c==-1) {    clearTimeout(t);    document.title='Redirecting ...';    alert( 'Sampled by JavaScriptBank.com' );    self.location="http://www.javascriptbank.com/newPage.html";  }}window.onload=timedCount;</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->