/* Template Name: Veltrix - Responsive Bootstrap 4 Admin Dashboard Author: Themesbrand File: countdown init js */ $(document).ready(function() { // Countdown // To change date, simply edit: var endDate = "January 17, 2019 20:39:00"; $(function() { var endDate = "January 17, 2020 20:39:00"; $('.coming-watch .countdown').countdown({ date: endDate, render: function(data) { $(this.el).html('
' + (parseInt(this.leadingZeros(data.years, 2) * 365) + parseInt(this.leadingZeros(data.days, 2))) + 'days
' + this.leadingZeros(data.hours, 2) + 'hours
' + this.leadingZeros(data.min, 2) + 'minutes
' + this.leadingZeros(data.sec, 2) + 'seconds
'); } }); }); });