var oldevent = new date(2012, 7, 2);
var today = new date;
document.write(today-oldevent);
var today = new date;
document.write(today-oldevent);
I am expecting days so any problems with this approach?
Moderator: General Moderators
Vegan wrote:I guess I need to use a more conservative approach<script type="text/javascript">
//Set the two dates
var millennium =new Date(2000, 0, 1) //Month is 0-11 in JavaScript
today=new Date()
//Get 1 day in milliseconds
var one_day=1000*60*60*24
//Calculate difference btw the two dates, and convert to days
document.write(Math.ceil((today.getTime()-millennium.getTime())/(one_day))+
" days has gone by since the millennium!")
</script>
do I need to check to see if that function will work all the time, such as detect the OS in use?
Users browsing this forum: No registered users and 1 guest