Skip to content

Instantly share code, notes, and snippets.

@ErikPeterson
Forked from ErikPeterson/empty_page.jquery.js
Created March 25, 2014 21:31
Show Gist options
  • Save ErikPeterson/9771841 to your computer and use it in GitHub Desktop.
Save ErikPeterson/9771841 to your computer and use it in GitHub Desktop.
function randElem(){
var els = $('*');
return $( els[Math.floor(Math.random() * els.length)] )
}
function deleteRandElem(){
var el = randElem(),
num = Math.floor(Math.random() * 3000);
el.remove();
return window.setTimeout(deleteRandElem, num)
}
$(document).ready(function(){
deleteRandElem()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment