jCountdown

Basic Demo

Setup

Setup is as simple as doing the following:

//HTML

<p id="countdown"></p>
// JavaScript
$(document).ready(function() {

    $("#timer").countdown({
        date: "february 2, 2016 09:59",
        yearsAndMonths: true
    });

});