This simple bit of jQuery code allows you to quickly detect and hide all elements containing a specifed text value on a page:
$("p.value:contains('sometextvalue')").hide();
Already know where I want to use it