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