I am using these jQuery plugin: jQuery Countdown.
I’m trying to get it to countdown to 17:00 (5:00 PM) everyday but I cannot seem to set the time.
Any help welcomed.
The code I have is:
$(function() {
var now = new Date()
var since = new Date(now.getFullYear(), now.getMonth(), now.getDay(), 17, 00);
$('#noDays').countdown({until: since, format: 'HMS'});
});
Timer stucks at 0 with this code.
Try this (and working example here):