7 lines
166 B
HTML
7 lines
166 B
HTML
|
<script type="text/javascript">
|
||
|
$(document).ready(function () {
|
||
|
$('.time-remaining').each(function () {
|
||
|
count_down($(this));
|
||
|
});
|
||
|
});
|
||
|
</script>
|