I'm trying to filter multiple lists (books of specific categories) with headers (category name) on keyup with jQuery. I want to only filter search the items within the list (the specific books), but not filter the headers. If a list is empty, the header (category name) should disappear. What I have so far works on filtering the multiple lists, but headers don't disappear if their list is empty. I would also like to exclude the .custom-books list from filter.
HTML:
<input type="text" id="search" />
<ul id="workflow_books">
<li>
<h6 class="custom"> Custom Books</h6>
<ul>
<li class="custom-books">
<a>Don't see your book in our list? Add it yourself!</a>
</li>
</ul>
</li>
<li>
<h6>Academic</h6>
<ul>
<li>
<a>Academic Book One</a>
</li>
<li>
<a>Academic Book Two</a>
</li>
</ul>
</li>
<li>
<h6>Botany</h6>
<ul>
<li>
<a>Botany Book One</a>
</li>
<li>
<a>Botany Book Two</a>
</li>
</ul>
</li>
</ul>
and my jQuery:
var $products = $('#workflow_books li ul li a')
$("#search").keyup(function() {
$products.show().filter(function() {
return !re.test($(this).text());
}).hide();
})
Any ideas?
Thanks and High Fives! Mike
re? I don't see it defined. – Mathletics May 16 '12 at 20:21