Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
User Journal

Journal bperkins's Journal: screw tags

I hate tags.

Now the preference that shuts off tags doesn't seem to work anymore.

Fortunately, Greasemonkey can help:

// ==UserScript==
// @name           nuke tags
// @namespace      bperkins
// @description    Get rid of stupid slashdot tags
// @include        http://slashdot.org/*
// ==/UserScript==

var re=new RegExp("tag", "gi");

var divs = document.getElementsByTagName('div');
for (var i = 0; i < divs.length; i++) {
    var div = divs[i];

    if (div.className == 'tag-widget body-widget'  ) {
    div.style.display = "none";
   }

}

This discussion has been archived. No new comments can be posted.

screw tags

Comments Filter:

"Spock, did you see the looks on their faces?" "Yes, Captain, a sort of vacant contentment."

Working...