Created
December 3, 2012 15:54
-
-
Save alexrussell/4195904 to your computer and use it in GitHub Desktop.
Wikify Bookmarklet
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
javascript:(function(){var els = document.querySelectorAll('p'), df, quotes=['I reckon that','My mate told me','I heard in the pub that','My mum told me','My nana always said that','According to the Daily Mail,','Common sense dictates that','Some people say','Apparently,','I read on Wikipedia that']; for (var element in els) { df = document.createElement('span'); df.innerHTML = quotes[Math.floor(Math.random() * quotes.length)] + ' '; els[element].insertBefore(df, els[element].childNodes[0]); };})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment