Skip to content

Instantly share code, notes, and snippets.

@kjtolsma
Created June 22, 2016 11:58
Show Gist options
  • Save kjtolsma/df256a7ccc0a5b382aede421bf6c2a29 to your computer and use it in GitHub Desktop.
Save kjtolsma/df256a7ccc0a5b382aede421bf6c2a29 to your computer and use it in GitHub Desktop.
$( '.event-countdown' ).each( function() {
var $element = $( this );
var date = $element.data( 'date' );
$element.countdown( date, function( event ) {
$( this ).text( event.strftime( '%D days %H:%M:%S' ) );
} );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment