$('[data-countdown]').each(function () {
var $this = $(this),
finalDate = $(this).data('countdown');
if (!$this.hasClass('countdown-full-format')) {
$this.countdown(finalDate, function (event) {
$this.html(event.strftime('%Ddays %Hhours %Mminutes %Sseconds'));
});
} else {
$this.countdown(finalDate, function (event) {
$this.html(event.strftime('%Ddays %Hhours %Mminutes %Sseconds'));
});
}
});