Quote:
Originally Posted by wally07
Thanks Gemma but that didn't work either. Every time you would load the page, the countdown would start back at 5 days, 4 minutes and 15 seconds.
Your countdown is just damn sexy not to use!  The countdown timezone timers I found on Google are fugly. lol
|
The only other thing I was able to come up with was setting the standard time as Universal Coordinated Time (UTC) which isn't much use either
Code:
<script type="text/javascript">
jQuery(document).ready(function() {
$('#countdown').countDown({
targetDate: {
'day': 31,
'month': 12,
'year': 2011,
'hour': 23,
'min': 59,
'sec': 59,
'utc': true
}
});
});
</script>