User:Phantom Hoover/badwigo.js
From RationalWiki
Note: After saving, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Clear the cache in Tools → Preferences
var wigoThreshold = -5; function awayCrappyWigos() { var divs = document.getElementsByTagName("span"); for (var i = 0; i < divs.length; ++i) { if (divs[i].id.substring(0, 4) == "wigo") { var voteCount = parseInt(divs[i].innerHTML); // traverse up the tree four times, and check we've hit the table var row = divs[i].parentNode.parentNode.parentNode.parentNode; if (row.tagName == "TABLE" && voteCount <= wigoThreshold) { row.style.display = "none"; } } } } addOnloadHook(awayCrappyWigos);