У меня следующая проблема
<a href="" class="so" title="Schuko"></a>
<a href="" class="so" title="French CEE17"></a>
$('a.so').live("click", function () {
var filter = $(this).attr("title");
if (filter) {
$('li:contains('+$(this).attr("title")+')').each(function(){
alert('yes');
});
}
return false;
});
<ul class="product_content">
<li class="prod" data-sockets="UK 15A CEE22 Schuko French Swiss Danish ">text goes here</li>
<li class="prod" data-sockets="UK 15A Schuko French CEE17 (16A) Socapex Harting Dutch Harting ">text goes here</li>
</ul>
Я пытаюсь перебрать все, что содержит значение data-sockets, чтобы показать и скрыть другие элементы li.