Skip to content

Instantly share code, notes, and snippets.

@madzak
Created January 24, 2013 01:35
Show Gist options
  • Save madzak/4616802 to your computer and use it in GitHub Desktop.
Save madzak/4616802 to your computer and use it in GitHub Desktop.
I hacked the 404 page with some client side javascript - http://www.romainbrasier.fr/404.php?lang=en
function hoverImage($image){
var images = $('img');
if(images == 1) {
clearTimeout(hoverImage);
}
for(var i=0,len=images.length;i<len;i=i+1) {
$(images[i]).trigger("mouseenter")
}
setTimeout(hoverImage,100);
};
hoverImage();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment