I use this countdown on my website, here
You can view the script here (Too large to post)
This is the code in the head section:
<script type="text/javascript" src="javascripts/jquery.countdown.js"></script>
<script type="text/javascript">
$(function () {
var austDay = new Date();
austDay = new Date(austDay.getFullYear() + 1, 1 - 1, 26);
$('.countdown-container').countdown({until: austDay});
$('#year').text(austDay.getFullYear());
});
</script>
I want to be able to change the countdown duration, hopefully to what ever time I want.
If anyone could lend an insight then that would be fantastic.
