JSFiddle - React, Tailwind, and code Playground
by petroveg
HTML
<link rel="stylesheet" href="http://keith-wood.name/css/jquery.countdown.css">
<script src="http://keith-wood.name/js/jquery.plugin.js"></script>
<script src="http://keith-wood.name/js/jquery.countdown.js"></script>
<div id="defaultCountdown"></div>
JavaScript
$(function () {
$('#defaultCountdown').countdown({
until: new Date(2014, 8, 11, 12, 30)
});
});