Есть такая структура
<div class="listWrapper">
<ul>
<li><label class="boxUnchecked"><input type="checkbox" id="genre0" name="genre[]" value="аниме" title="аниме" class="listBox"/>аниме</label></li>
<li><label class="boxUnchecked"><input type="checkbox" id="genre1" name="genre[]" value="биография" title="биография" class="listBox"/>биография</label></li>
<li><label class="boxUnchecked"><input type="checkbox" id="genre2" name="genre[]" value="боевик" title="боевик" class="listBox"/>боевик</label></li>
<li><label class="boxUnchecked"><input type="checkbox" id="genre3" name="genre[]" value="вестерн" title="вестерн" class="listBox"/>вестерн</label></li>
<li><label class="boxUnchecked"><input type="checkbox" id="genre4" name="genre[]" value="военный" title="военный" class="listBox"/>военный</label></li>
<li><label class="boxUnchecked"><input type="checkbox" id="genre5" name="genre[]" value="детектив" title="детектив" class="listBox"/>детектив</label></li>
...
</ul></div>
есть строка вида "боевик, детектив"
var arr = jsonObj.genre.split(", ");
$(".listWrapper input.listBox").each(function(){
// тут проверка?
});
Как сделать проверку на наличие значения?