We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want the counter to reset automatically and I don't always have to do it manually. Excuse the english
The text was updated successfully, but these errors were encountered:
this maybe help
var fiveSeconds = new Date().getTime() + 5000; $('#clock').countdown(fiveSeconds, {elapse: true}) .on('update.countdown', function(event) { var $this = $(this); if (event.elapsed) { $this.html(event.strftime('After end: <span>%H:%M:%S</span>')); } else { $this.html(event.strftime('To end: <span>%H:%M:%S</span>')); } });
Sorry, something went wrong.
No branches or pull requests
I want the counter to reset automatically and I don't always have to do it manually.
<script> $('[data-countdown]').each(function() { var $this = $(this), finalDate = $(this).data('countdown'); $this.countdown(finalDate, function(event) { $this.html(event.strftime('Excuse the english
The text was updated successfully, but these errors were encountered: