init.js 159 B

123456
  1. jQuery(document).ready(function ($) {
  2. $("#bmlcount")
  3. .countdown("2014/09/27", function(event) {
  4. $(this).text(event.strftime('%D days %H:%M:%S'));
  5. });
  6. });