Skip to content

Instantly share code, notes, and snippets.

@psql
Created September 16, 2013 16:41
Show Gist options
  • Save psql/6583169 to your computer and use it in GitHub Desktop.
Save psql/6583169 to your computer and use it in GitHub Desktop.
Javascript countdown
<script type="text/javascript">
today = new Date();
BigDay = new Date("December 22, 2013");
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (BigDay.getTime() - today.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
document.write(daysLeft + " days till San Francisco!");
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment