Quote:
Originally Posted by wilford brimley
i think it needs the "omitWeeks: true" part as well. i did two events that both go n a saturday at 10 eastern and it is showing the countdown to be the same, ignoring that they are a week apart. i set the date right at "date" in the code. how do i add that?
|
This should work.
Code:
// Initiate Countdown
jQuery(document).ready(function() {
$('#countdown').countDown({
targetDate: {
'day': 00,
'month': 00,
'year': 0000,
'hour': 00,
'min': 0,
'sec': 0,
// time set as UTC
'utc': true
},
omitWeeks: true
});
});