SLameN,
$('#DateCountdown')
.TimeCircles({
count_past_zero: false,
time: {
Days: { show: false },
Hours: { show: false },
Minutes: { text: 'Минут' },
Seconds: { text: 'Секунд' }
}
})
.addListener(function (unit, value, total) {
if (total == 0) {
$('#btn').trigger('click');
// this.TimeCircles().restart();
}
});