Jednostavni filter Pretrage

DeletedUser

Guest
Skripta radi tako što vam prikazuje koje jedinice nisu istražene u kovačnici, iz vaših sela.

Code:
javascript:
$('#techs_table tr:not(:first)').each(function(i,e){
  var h = true;
  $(e).find('[class^=rtt]').each(function(i,e){
    if (!$(e).attr('class').match('green')) h = false;
  });
  if (h) e.parentNode.removeChild(e);
});
void(0);
 
Top