Friday, April 20, 2012

Remove "edit" link from wiki site.

Paste below code to JavaScript console.
f = function(l) {
  for(var i = 0; i < l.length; i++) {
    var c = l[i];
    c.parentNode.removeChild(c);
  }
};

f($('.sectionedit'));

No comments:

Post a Comment