Version compl�te: jsB@nk » Browser » Window » Recyclage automatique de la page, avec ou sans affichage à rebours
URL: https://www.javascriptbank.com/automatic-page-refresher.html
Cet JavaScript actualise automatiquement (recharge) de votre page Web en quelques secondes et affiche le temps à rebours à l'intérieur de la état bar. Facile de configuration de l'intervalle d'actualisation. Le coundown-écran peut être allumé ou éteint. Copiez-collez l'installation.
Version compl�te: jsB@nk » Browser » Window » Recyclage automatique de la page, avec ou sans affichage à rebours
URL: https://www.javascriptbank.com/automatic-page-refresher.html
<SCRIPT language=JavaScript>// Automatic Page Refresher// Author: Peter Gehrig // Web Site: http://www.24fun.com ////////////////////////////////////////////////////////////////////////////// CONFIGURATION STARTS HERE// Configure refresh interval (in seconds)var refreshinterval=5// Shall the coundown be displayed inside your status bar? Say "yes" or "no" below:var displaycountdown="yes"// CONFIGURATION ENDS HERE////////////////////////////////////////////////////////////////////////////// Do not edit the code belowvar starttimevar nowtimevar reloadseconds=0var secondssinceloaded=0function starttime() {starttime=new Date()starttime=starttime.getTime() countdown()}function countdown() {nowtime= new Date()nowtime=nowtime.getTime()secondssinceloaded=(nowtime-starttime)/1000reloadseconds=Math.round(refreshinterval-secondssinceloaded)if (refreshinterval>=secondssinceloaded) { var timer=setTimeout("countdown()",1000)if (displaycountdown=="yes") {window.status="Page refreshing in "+reloadseconds+ " seconds"} } else { clearTimeout(timer)window.location.reload(true) } }window.onload=starttime</SCRIPT><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->