Created
January 24, 2013 01:35
-
-
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
This file contains hidden or 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
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