$('#countdown').timeTo(120, function() { alert('Countdown finished'); });
$('#countdown').timeTo({ seconds: 100, displayHours: false });
$('#countdown').timeTo(new Date('2025-04-14T00:00:00.069Z'));
$('#countdown').timeTo({
time: '23:59:54',
displayDays: 2,
theme: "black",
displayCaptions: true,
fontSize: 48,
captionSize: 14,
lang: 'es'
});
$('#clock-1').timeTo();
$('#clock-w-step-cb').timeTo( { step: function() { console.log('Executing every 3 ticks'); }, stepCount: 3 } );