Reverse Countdown Between Startdate And End Date

Oct 25, 2017

Configuration:-


<div id="countdowntimer"><span id="startend_date"></span></div>

<script type="text/javascript">
	$(function() {
		$("#startend_date").countdowntimer({
			//Set server date and time as "<?php echo date('Y/m/d H:i:s'); ?>".
			startDate : "2016/01/01 00:00:00",
			dateAndTime : "2022/01/01 00:00:00",
			size : "lg",
			displayFormat : "YODHMS"
		});
	});
</script>