This page contains examples of my manual creation of HTML files using Javascript.
This JavaScript will generate a different greeting on what day it is. Note that Sunday=0, Monday=1, Tuesday=2, etc.
SYNTAX
This page contains examples of my manual creation of HTML files using Javascript.
["<(no space) script type="text/javascript">
var d = new Date ()
theDay=d.getDay ()
switch (theDay)
{
case 5:
document.write("Finally Friday")
break
case 6:
document.write("Super Saturday")
break
case 0:
document.write("Sleepy Sunday")
break
default:
document.write("I'm really looking forward to this weekend!)
}
This JavaScript will generate a different greeting on what day it is. Note that Sunday=0, Monday=1, Tuesday=2, etc.
"