1 · Martin Capodici · Jan. 1, 2001, midnight
View/Edit/Share Page Source // taken from https://github.com/feross/TheAnnoyingSite.com/blob/master/static/index.js const clipboardCopy = text = { // A contains the text to copy var span = document.createElement('span') span.textContent = text span.style.whiteSpace = 'pre' // Preserve consecutive spaces and newlines // An isolates the from the page's styles var iframe = document.createElement('iframe') iframe.sandbox = 'allow-same-origin' document.body.appendChild(iframe) var win = iframe.co...