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.
<SCRIPT LANGUAGE="Javascript"><!--
// ***********************************************
// AUTHOR: [URL unfurl="true"]WWW.CGISCRIPT.NET,[/URL] LLC
// URL: [URL unfurl="true"]http://www.cgiscript.net[/URL]
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts toaceDay!
// ( [URL unfurl="true"]http://www.cgiscript.net/scripts.htm[/URL] )
// ***********************************************
var aceDate=new Date()
var aceYear=aceDate.getYear()
if (aceYear < 1000)
aceYear+=1900
var aceDay=aceDate.getDay()
var aceMonth=aceDate.getMonth()+1
if (aceMonth<10)
aceMonth="0"+aceMonth
var aceDayMonth=aceDate.getDate()
if (aceDayMonth<10)
aceDayMonth="0"+aceDayMonth
document.write("<font color='000000' face='Arial' size='2'><b>"+aceMonth+"/"+aceDayMonth+"/"+aceYear+"</b></font></small>")
//--></SCRIPT>
<SCRIPT LANGUAGE="Javascript"><!--
// ***********************************************
// AUTHOR: [URL unfurl="true"]WWW.CGISCRIPT.NET,[/URL] LLC
// URL: [URL unfurl="true"]http://www.cgiscript.net[/URL]
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( [URL unfurl="true"]http://www.cgiscript.net/scripts.htm[/URL] )
// ***********************************************
// Get today's current date.
var now = new Date();
// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');
// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
// Calculate four digit year.
function fourdigits(number) {
return (number < 1000) ? number + 1900 : number;
}
// Join it all together
today = days[now.getDay()] + ", " +
months[now.getMonth()] + " " +
date + ", " +
(fourdigits(now.getYear())) ;
// Print out the data.
document.write("Today\'s date is " +today+ ".");
//--></SCRIPT>