Skip to content

sonnyt/downCount

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DownCount

jQuery countdown plugin that accounts for timezone.

#Usage

$('.countdown').downCount({
    date: '08/27/2013 12:00:00',
    offset: -5
}, function () {
    alert('WOOT WOOT, done!');
});

#Options

Option Description
date Target date, ex 08/27/2013 12:00:00
offset UTC Timezone offset

You can also append a callback function which is called when countdown finishes.