Hi guys im using a jquery countdown, i want to set it to 16 hours but i cant for the life of me figure out the date format settings in the callback; can anyone help?
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 0 - 1, 15);
$('.time').countdown({until: austDay,
layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, and {sn} {sl}'});
$('#year').text(austDay.getFullYear());
});
It's configured in line 3 of the above code, here's a link to the plugin website.
Thanks in advance