Skip to content

Instantly share code, notes, and snippets.

View Squizzer's full-sized avatar

Morgan Squizzer

  • California
View GitHub Profile
@Squizzer
Squizzer / countdown timer
Created October 17, 2012 02:10
A html/js countdown timer with some comments to help you :)
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function cdtd() {
var wo = new Date("August 13, 2013 10:30:30");
var now = new Date();
var timeDiff = wo.getTime() - now.getTime();
if (timeDiff <= 0) {