Skip to content

Instantly share code, notes, and snippets.

@cybic
Last active August 29, 2015 14:07
Show Gist options
  • Save cybic/1249792fca9be036ece1 to your computer and use it in GitHub Desktop.
Save cybic/1249792fca9be036ece1 to your computer and use it in GitHub Desktop.
//Scramble text
[].forEach.call(document.querySelectorAll('h1, h2, h3, p'), function(el){ el.textContent = el.textContent.replace(/([a-z])/g, function(m){ return String.fromCharCode(m.charCodeAt() - 1) } ) });
// Remove images
[].forEach.call(document.querySelectorAll('img'), function(img){ img.setAttribute('src', 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7'); img.style.backgroundColor = '#aaa' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment