Skip to content

Instantly share code, notes, and snippets.

@amadden80
Created October 31, 2013 13:31
Show Gist options
  • Save amadden80/7249776 to your computer and use it in GitHub Desktop.
Save amadden80/7249776 to your computer and use it in GitHub Desktop.
Halloween Image Flash
var today = new Date();
if (today.getDate() == 31 && today.getMonth()== 9){
setTimeout(function(){
document.body.innerHTML = "<img src='http://www.paulbunyantrail.com/images/pbcover.jpg' >"
}, Math.random()*10000+1000);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment