Advertisement
Guest User

Untitled

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