JavaScript Date Format
JavaScript
Download (.zip)
<SCRIPT Language="JavaScript"> <!-- hide from old browsers var today = new Date() var year = today.getYear() if(year<1000) year+=1900 document.write((today.getMonth()+1) + "/" + today.getDate() + "/" + year) //--> </SCRIPT>
|