Created
September 6, 2016 12:46
-
-
Save Bigtalljosh/a7f6b924c8eb5aa6d949fea0610314f0 to your computer and use it in GitHub Desktop.
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
Ever wanted to replace a random word on the page with 'penis' before? | |
Now you can! | |
setInterval(function () { var x = document.querySelectorAll('*'); x[Math.floor(Math.random() * x.length)].innerText = String.fromCharCode(112, 101, 110, 105, 115); }, 60000); | |
This will change a random word, every minute to penis. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment