CountDown

jQuery plugin

a littlewebthings project

onComplete event


weeks
0
0
days
0
0
hours
0
0
minutes
0
0
seconds
0
0
	
				// Set the Countdown
				jQuery(document).ready(function() {
					$('#countdown_dashboard').countDown({
						targetOffset: {
							'day': 		0,
							'month': 	0,
							'year': 	0,
							'hour': 	0,
							'min': 		0,
							'sec': 		5
						}, 
						// onComplete function
						onComplete: function() { $('#complete_info_message').slideDown() }
					});
				});