You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can easily edit the onEnd in your js to do something like this:
<script>$(function () {var endDate = "2022-10-25T14:31:15-07:00";$('.js-countdown-timer').countdown({date: endDate,render: function (data) {$('.js-countdown-days').text(data.days);$('.js-countdown-hours').text(data.hours);$('.js-countdown-mins').text(data.min);$('.js-countdown-secs').text(data.sec);},onEnd: function () {$('.countdown002__wrap').html('<h1 class=live>We are live <a href="" class="btn btn-primary">join us online</a></h1>');}});});</script>
how to add alert after countdown end? seems not work! any example? thanks.
The text was updated successfully, but these errors were encountered: