»
EnglishFrenchVietnamese

Print - Date Stamp script - JavaScriptBank.com

Full version: jsB@nk » Time » Clock » Date Stamp script
URL: https://www.javascriptbank.com/date-stamp-script.html

Date Stamp script © JavaScriptBank.comScript that stamps the date on your page.

Full version: jsB@nk » Time » Clock » Date Stamp script
URL: https://www.javascriptbank.com/date-stamp-script.html



HTML
<script language="javascript">var now=new Date()document.write('<b>Today is '+"SunMonTueWedThuFriSat".substr(now.getDay()*3,3)+', '+"JanFebMarAprMayJunJulAugSepOctNovDec".substr(now.getMonth()*3,3)+' '+now.getDate()+', '+now.getFullYear()+'</b>');</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->