Advertisement
Guest User

Untitled

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