Lifthrasil: That would be great. I tried combining the :has() statement with a :contains() statement via a logical AND, but it didn't work.
As promised, vote filter script:
jQuery('.spot_h').remove()
for (var i = 17; i > 0; i--)
{
var threadURL = "/forum/general/gog_mafia_26_stalker_the_dangers_of_the_zone/page" + i + " .spot_h"
var $newdiv = $( "<div class='page" + i + "posts'/>" )
$( ".list_h" ).prepend($newdiv)
$( ".page" + i + "posts").load(threadURL, function() {
jQuery('.post_text_c:not(:has(span.bold:contains(vote)))').parents('.spot_h').remove();
})
}
It's not perfect, it finds posts that quote vote posts too, but it's a good start for tallying votes :)
Edit: I had to look it up, but you were on the right track, just the :contains goes within the :has rather than connected with an AND as it might in other languages...