Citation:
window.splash=window.open("gabarits/splash.html","SplashWindow","width=150,height=150,toolbar=no,status=no");
window.splash.timer=setInterval(function() {
// fonction qui ajoute un "." au contenu d'une DIV ou similaire
window.splash.addTime()
}, 1000)
// Fonction invokée après endTime pour fermer la fenêtre
window.splash.beginClose=function() {
clearInterval(this.timer);
setTimeout(this.close(), 1000);
Est-ce que les function() que tu as mit doivent être remplacer par mes propres function? je ne suis pas sur de comprendre..