Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

Re: Auto Display Date?

Quote Reply
Re: Auto Display Date? In reply to
oops.. i had a y2k bug in the first one Smile

netscape's problem..

Code:
<script language="JavaScript">
<!--
var months = new Array('January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December');
var date = new Date();
var year = date.getYear();
if (year < 2000) year += 1900;
document.write(months[date.getMonth()] + " " + date.getDate() + ", " + year);
//-->
</script>

------------------
Jerry Su
Links SQL Licensed
------------------
Subject Author Views Date
Thread Auto Display Date? dnason 2337 Jan 17, 2000, 7:18 AM
Post Re: Auto Display Date?
Alex 2265 Jan 17, 2000, 8:46 AM
Post Re: Auto Display Date?
dnason 2268 Jan 17, 2000, 11:48 AM
Post Re: Auto Display Date?
widgetz 2271 Jan 17, 2000, 12:56 PM
Post Re: Auto Display Date?
widgetz 2268 Jan 17, 2000, 3:36 PM
Post Re: Auto Display Date?
dnason 2271 Jan 17, 2000, 5:56 PM