Current Time With Timezone And Color Options

Oct 25, 2017

Configuration:-


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

<script type="text/javascript">
	$(function() {
		$("#current_timer").countdowntimer({
			currentTime : true,
			size : "lg",
			borderColor : "#5D09FA",
			backgroundColor : "#FAF209",
			fontColor : "#FA0909",
			//timeZone of Los Angeles UTC-420
			timeZone : -420
		});
	});
</script>