Advertisement
Guest User

Untitled

a guest
Feb 26th, 2014
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.     $(".timer").each(function() {
  3.         $(this).countdown({
  4.             date: $(".timer").data("date"),
  5.             render: function(e) {
  6.                 return $(this.el).html("" + e.days + " dag(en), " + e.hours + " uur, " + e.min + " min")
  7.             }
  8.         });
  9.     });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement