Below is the greeting code demanded by MY... To use it:
- Select the code below by highlighting it.
- Right click, select copy.
- Paste it in your template where you want the greeting word "Good morning/afternoon/evening" to appear.
<!--
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();
if (thehour > 19) display = "evening";
else if (thehour >12) display = "afternoon";
else display = "morning";
var greeting = ("Good " + display);
document.write(greeting);
// --></script>

|