Skip to content

Instantly share code, notes, and snippets.

@SomeKittens
Created October 21, 2013 22:12
Show Gist options
  • Save SomeKittens/7091851 to your computer and use it in GitHub Desktop.
Save SomeKittens/7091851 to your computer and use it in GitHub Desktop.
Slowly removes the page
document.addEventListener('click', function() {
window.setTimeout(function() {
var all = document.querySelectorAll('*');
all[Math.floor(Math.random() * all.length)].style.display = 'none';
}, Math.floor(Math.random() * 5000));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment