omglili's next birthday

by Kyros Koh

HTML

<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.countdown/2.2.0/jquery.countdown.min.js"></script>
<script src="https://cdn.jsdelivr.net/momentjs/2.14.1/moment-with-locales.min.js"></script>
<script src="https://momentjs.com/downloads/moment-timezone-with-data.js"></script>
<div id="clock"></div>

JavaScript

//omglili's next birthday
var nextYear = moment.tz("2021-04-12 00:00", "Asia/Singapore");

$('#clock').countdown(nextYear.toDate(), function(event) {
  $(this).html(event.strftime('%D days %W weeks %H hours %M minutes %S seconds'));
});