Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<head>
<script>
function dodate()
{
days = newArray("Sunday","Monday","Tuesday","Wednesday",
"Thursday","Friday","Saturday")
months = new Array ("Jan","Feb","March","April","May","June","July",
"Aug","Sept","Oct","Nov","Dec")
d = new Date()
dDay = days[d.getDay()]
dMonth = monthd[d.getMonth()]
temp = dDay +",""+dMonth+""+d.getDate()+"20" + d.getYear()
document.dateform.today.value=temp
}
</script>
</head>
<body>
<form name="dateform">
Today is
<input type="text" name="today" value="" size="30">
</form>
<script>
dodate()
</script>
</body>
Do similiar with the time (use timeouts if you want to keep it running).
- fingerprint
onFocus="blur()"