views:

320

answers:

2

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!

A: 

I've used this jQuery plugin to display countdowns, it's pretty simple to set up. A usage example is available on this page.

Kaleb Brasee
as i was actually writign this i realized the normal 'shopping days' rules probably dont apply (i.e. ignoring weekends)
james
+3  A: 

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!!
CMS