(function($){ $(document).ready(function(){ // Set the time at which the countdown expires. // var untilDate new Date(Year, Month - 1, Day) //----------------------------------------------- var untilDate = new Date(2017, 8 - 1, 1); $(".countdown").countdown({ until: untilDate, format: 'dHMS', padZeroes: true }); }); // End document ready })(this.jQuery);