Version compl�te: jsB@nk » Heure » Salutation Note script
URL: https://www.javascriptbank.com/greeting-note-script.html
Bienvenue aux visiteurs de votre site. Cet JavaScript affiche Good Morning, Good Afternoon, ou Bonsoir, selon le heure de la journée. Utilise la page titre dans le cadre de l'accueil.
Version compl�te: jsB@nk » Heure » Salutation Note script
URL: https://www.javascriptbank.com/greeting-note-script.html
<script type="text/javascript"><!--// Created by: Robin Jones :: http://robinjones.freeuk.com */function greet() { var todaydate = new Date(); var timeis = todaydate.getTime(); todaydate.setTime(timeis); var houris = todaydate.getHours(); if (houris > 17) display = "Evening"; else if (houris >12) display = "Afternoon"; else display = "Morning"; var title = document.title; var welcome = ("Good " + display + ". Welcome to " + title +"."); document.write(welcome);}--></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->
<script type="text/javascript"><!-- Begin greet();// End --></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->