Here we are discussing the count down counter to a specific date using javascript. This a simple counter and we are discussing here its simplest and easy implementable way. Demo is here :

So, to implement above mentioned demo we just need to include a JavaScript file which is required to make counter work that is coundown.js in this way :

<script src="http://www.wptricks24.com/wp-content/uploads/2015/03/countdown.js"></script>

Just download your coundown.js file from here : http://www.wptricks24.com/wp-content/uploads/2015/03/countdown.js, then paste it in your code and change the path. In other case you just put the script code as above, it will automatically start working.

Now just copy and paste the below mentioned code where you want to show your count down counter.

<script type="application/javascript">

var myCountdownTest = new Countdown({
					year	: 2018, //upcoming year
					month	: 02, //upcoming month
					day	: 22, //upcoming date
					width	: 472, //here you can control width of the counter 
					height	: 70 //here you can control height of the counter 
					});
</script>

Your counter will start working as per your mentioned dates. Demo counter is count down of a special upcoming event of my life. You can make yours 🙂