Created
June 5, 2017 10:39
-
-
Save dunglas/615bbeca34f91cf73a5426894be6dd20 to your computer and use it in GitHub Desktop.
Rescue all Lemmings of http://www.romainbrasier.fr/404/
This file contains 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
new MutationObserver(mutation => { | |
for (let lemming of document.querySelectorAll('img[alt="lemming tombant"]')) { | |
lemming.dispatchEvent(new Event('mouseover', { bubbles: true })); | |
} | |
}).observe(document, {childList: true, subtree: true}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment