Only Minutes Timer With Destroy

Oct 25, 2017

Configuration:-


<div id="countdowntimer"><span id="m_timer"></span></div>
<button id="destroyBtn"></button>

<script type="text/javascript">
	$(function() {
		$("#m_timer").countdowntimer({
			minutes : 10,
			size : "lg",
			displayFormat : "MS"
		});
	});
	
	$("#destroyBtn").click(function() {
		//Use below method call to destroy the timer.
		$("#m_timer").countdowntimer("destroy");
	});	
</script>