Skip to content

Instantly share code, notes, and snippets.

View johnjelinek's full-sized avatar
🤓

John Jelinek IV johnjelinek

🤓
  • Montgomery, TX
  • 17:19 (UTC -05:00)
View GitHub Profile
@johnjelinek
johnjelinek / countdown.coffee
Created June 23, 2012 06:58
countdown in coffeescript
counter = (futureDate) ->
today = new Date
count = Math.floor (futureDate - today) / 1000
countdown = setInterval ->
$("#d").html Math.floor count / ( 60 * 60 * 24 )
temp = count % ( 60 * 60 * 24 )
$("#h").html Math.floor temp / ( 60 * 60 )
temp = count % ( 60 * 60 )
$("#m").html Math.floor temp / 60
temp = count % 60