I am using keith Wood jquery countdown plugin for my coming soon page and i want to add 7 days 10 hours 40 minutes countdown. You can find more here http://keith-wood.name/countdown.html
This is my code:
function countdown () {
// src: http://keith-wood.name/countdown.html
layout = $('.timer').html();
var newYear = new Date();
newYear = new Date(newYear.getDate() + 7, 1 - 1, 1);
$('.timer').countdown({until: newYear, layout: layout});
}
Thanks in advance!