I have following countdown code.
$(function () {
var austDay = new Date(2016 , 0, 12, 12);
$('#defaultCountdown').countdown({until: austDay, layout: '{dn} {dl}, {hn} {hl}, {mn} {ml}, and {sn} {sl}'});
$('#year').text(austDay.getFullYear());
});
I just want to change the counter to extend one year, i changed the year from 2015 to 2016 but it is not working My landing page is hosted Here. Appreciate any help