Hide Sitepoint blog comments

By Tarh Last update Mar 18, 2009 — Installed 41 times.
// ==UserScript==
// @name           Hide Sitepoint blog comments
// @namespace      http://www.example.com/
// @description    Removes blog comments from Sitepoint blogs
// @include        http://*.sitepoint.com/blogs/*
// ==/UserScript==

window.addEventListener("load", function(e) {
	if (!document.getElementById) return;
	var commentBlock = document.getElementById("comments");
	var respondBlock = document.getElementById("respond");
	if (commentBlock != null && typeof(commentBlock) != "undefined")
		commentBlock.parentNode.removeChild(commentBlock);
	if (respondBlock != null && typeof(respondBlock) != "undefined")
		respondBlock.parentNode.removeChild(respondBlock);
}, false);