I'm using this plugin to create a simple countdown timer: http://keith-wood.name/countdown.html
My issue is that the output of months as described in the layout reference doesn't seem to work.
This page: http://keith-wood.name/countdownRef.html#layout describes the output of months to be something like {ov} but that just gives me zero with the following code:
$(function () {
var austDay = new Date();
austDay = new Date(2011, 6, 21);
$('#defaultCountdown').countdown({until: austDay, layout:'<b>{ov} {dl} and'+'{hn} {hl}, {mn} {ml}, {sn} {sl}</b>'});
});
I'm trying to get it to spit out the months, days, hours and minutes with separators.
I'm using JQuery v.1.4.4