NDOJ/templates/contest/contest-datetime-js.html

7 lines
166 B
HTML
Raw Normal View History

2023-11-27 00:05:19 +00:00
<script type="text/javascript">
$(document).ready(function () {
$('.time-remaining').each(function () {
count_down($(this));
});
});
</script>