Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var dARemoveOutgoing = {
- ancs: document.getElementsByTagName("a"),
- workIt: "",
- action: function() {
- for (i = 0; i < dARemoveOutgoing.ancs.length; i++) {
- dARemoveOutgoing.workIt = dARemoveOutgoing.ancs[i].getAttribute("href");
- dARemoveOutgoing.workIt = dARemoveOutgoing.workIt.replace(/http:\/\/www\.deviantart\.com\/users\/outgoing\?/, "");
- dARemoveOutgoing.ancs[i].setAttribute("href", dARemoveOutgoing.workIt);
- }
- }
- }
- document.addEventListener("DOMContentLoaded", dARemoveOutgoing.action, false);
Advertisement
Add Comment
Please, Sign In to add comment