$('#countdown').timeTo(120, function() { alert('Countdown finished'); });
$('#countdown').timeTo({ seconds: 100, displayHours: false });
$('#countdown').timeTo(new Date(''));
$('#countdown').timeTo({ time: '', 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 } );