Isoraqathedh

Remove DA Outgoing page

Feb 4th, 2012
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var dARemoveOutgoing = {
  2.     ancs: document.getElementsByTagName("a"),
  3.     workIt: "",
  4.     action: function() {   
  5.         for (i = 0; i < dARemoveOutgoing.ancs.length; i++) {
  6.             dARemoveOutgoing.workIt = dARemoveOutgoing.ancs[i].getAttribute("href");
  7.             dARemoveOutgoing.workIt = dARemoveOutgoing.workIt.replace(/http:\/\/www\.deviantart\.com\/users\/outgoing\?/, "");
  8.             dARemoveOutgoing.ancs[i].setAttribute("href", dARemoveOutgoing.workIt);
  9.         }
  10.     }
  11. }
  12. document.addEventListener("DOMContentLoaded", dARemoveOutgoing.action, false);
Advertisement
Add Comment
Please, Sign In to add comment