Created
June 8, 2011 14:58
-
-
Save rnaud/1014589 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
date = $('meta[name=next_sale]').attr("content"); | |
end_date = Date.parse(date); | |
remaining_time = end_date - now; | |
if (remaining_time > 0) { | |
$("#box5").html('<div id="box_timer">Ivan est un gros anuf</div>'); | |
} else { | |
setInterval("updateTimer()", 1000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment