Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. //page crawler walkthrough the site and click on anything
  2. (function (debug) {
  3. if (debug == true ) {
  4.  
  5. var dl, dll, i;
  6. dl = document.links;
  7. dll = dl.length;
  8. for (i = dll - 1; i >= 0; i--) {
  9. if (dl[i].href.substr(0, 7) == 'mailto:') dl.splice(i,1);
  10. if (dl[i].href.substr(0, 11) == 'javascript:') dl.splice(i,1);
  11. if (dl[i].href == '#') dl.splice(i,1);
  12. if (dl[i].href == '') dl.splice(i,1);
  13.  
  14. setTimeout(function(){
  15. var item = dl[Math.floor(Math.random()*dll)];
  16. window.location.href = item.href;
  17. },500)
  18. }
  19. }
  20. })(false);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement