Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

multiple countdown html js

$('[data-countdown]').each(function() {
  var $this = $(this), finalDate = $(this).data('countdown');
  $this.countdown(finalDate, function(event) {
    $this.html(event.strftime('%D days %H:%M:%S'));
  });
});
Source by hilios.github.io #
 
PREVIOUS NEXT
Tagged: #multiple #countdown #html #js
ADD COMMENT
Topic
Name
2+4 =