I'm sure I did it wrong, so my early apologies... this is what i have. I was on the understanding to change the numbers, this is what I have
Quote:
var month = '0'; // 1 through 12 or '*' within the next month, '0' for the current month
var day = '13'; // day of month or + day offset
var dow = 3; // day of week sun=1 sat=7 or 0 for whatever day it falls on
var hour = 9; // 0 through 23 for the hour of the day
var min = 59; // 0 through 59 for minutes after the hour
var tz = 10; // offset in hours from UCT to your timezone
var lab = 'yobromofo-countdown-timer'; // id of the entry on the page where the counter is to be inserted
function start() {displayCountdown(setCountdown(month,day,hour,min, tz),lab);}
loaded(lab,start);
|