I am using this jQuery countdown plugin here and it seems pretty straightforward but i must be missing something. Here is my code
$(document).ready(function(){
var austDay = new Date();
console.log(austDay.getFullYear() + 1);
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('#countdown').countdown({until: austDay, format: 'dHMS'});
});
<div id="countdown"></div>
Here is the page