User:Phantom Hoover/badwigo.js

From RationalWiki
Jump to navigation Jump to search

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 / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
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);