Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shopping days till christmas counter jQuery

How to calculate shopping days till christmas counter in jQuery. need to add to website. need quick and dirty. no partiaulcar date it needs to correspond to

needs to ignore weekends of course - or maybe not since its for a website. hmm

cant believe there isnt one on here already.

happy holidays everyone!

like image 642
james Avatar asked Dec 06 '09 05:12

james


1 Answers

You can easily build a function to get the number of days left until a date:

function daysUntil(year, month, day) {
  var now = new Date(),
      dateEnd = new Date(year, month - 1, day), // months are zero-based
      days = (dateEnd - now) / 1000/60/60/24;   // convert milliseconds to days

  return Math.round(days);
}

daysUntil(2009, 12, 25); // 19 days!!
like image 115
Christian C. Salvadó Avatar answered Sep 18 '22 02:09

Christian C. Salvadó