Created
January 23, 2013 23:39
-
-
Save thehack/4615814 to your computer and use it in GitHub Desktop.
A script to save all the lemmings on this playable 404 page: http://www.romainbrasier.fr/404.php?lang=en .
You can just copy and paste the following into your browser's javascript console.
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
var saveTheirSouls = function() { | |
$('img').trigger('mouseover'); | |
setTimeout( function() { | |
if ($('img').length > 1) { | |
return saveTheirSouls() | |
} | |
else { | |
return false; | |
} | |
}, 1000); | |
}; | |
saveTheirSouls(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment