Skip to content

Instantly share code, notes, and snippets.

View ErikPeterson's full-sized avatar

Ricky Tomatoes ErikPeterson

View GitHub Profile
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();