Skip to content

Instantly share code, notes, and snippets.

@CS1000
Last active August 29, 2015 14:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CS1000/2b1b39c4635d1277ba71 to your computer and use it in GitHub Desktop.
Save CS1000/2b1b39c4635d1277ba71 to your computer and use it in GitHub Desktop.
Swap ALL the <div>s
javascript:setInterval(function(){d=document.querySelectorAll('div');
l=d.length;a=d[parseInt(Math.random()*l)];b=d[parseInt(Math.random()*l)];
c=a.innerHTML;a.innerHTML=b.innerHTML;b.innerHTML=c;}, 42)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment