You are viewing a single comment's thread.

view the rest of the comments →

0
5

[–] boredTech [S] 0 points 5 points (+5|-0) ago 

Updated. Now I'm grabbing from my blocked users page.

console.log("started");

$(document).ready(function(){
  $.get('https://voat.co/u/boredTech/blocked/user', function(result){
     $(result).find('td > a').each(function(){
       $("div.submission").has('a[href="/u/' + $(this).text() + '"]').hide();
       });
   });
});

console.log("done");