/* Theme by: WebThemez.com Note: Please use our back link in your site */ $( function() { var endDate = "December 27, 2014 15:03:25"; $('.countdown.simple').countdown({ date: endDate }); $('.countdown.styled').countdown({ date: endDate, render: function(data) { $(this.el).html("
" + this.leadingZeros(data.days, 3) + " days
" + this.leadingZeros(data.hours, 2) + " hrs
" + this.leadingZeros(data.min, 2) + " min
" + this.leadingZeros(data.sec, 2) + " sec
"); } }); $('.countdown.callback').countdown({ date: +(new Date) + 10000, render: function(data) { $(this.el).text(this.leadingZeros(data.sec, 2) + " sec"); }, onEnd: function() { $(this.el).addClass('ended'); } }).on("click", function() { $(this).removeClass('ended').data('countdown').update(+(new Date) + 10000).start(); }); });