Days Left Until ...
Here is what is generated by this code:
Today is 1/5/2025
<!-- The following code is to be placed in the body of the page --> <SCRIPT LANGUAGE="JavaScript"> <!-- Hide content from non Javascript browsers var Today = new Date(); var ThisDay = Today.getDate(); var ThisMonth = Today.getMonth() + 1; var ThisYear = Today.getFullYear(); var DaysLeft; var DayName = Today.getDate(); document.write("Today is " + ThisMonth + "/" + ThisDay + "/" + ThisYear + "<br>"); // End of hiding JavaScript code from old browsers --> </SCRIPT>