I've been trying to fix the problem but i'm not that great at javascript/jquery so i'm asking you guys again.
If i select white and blue, i get all the white and blue animals, that's perfectly fine. Same as if i select Horse and Chicken... But the problem is, as soon as i select white horse or something i get random information.. The question from me is how can i fix this?
Javascript:
$(function(){
$('div.tags').delegate('input[type=checkbox]', 'change', function()
{
var $lis = $('.results > li'),
$checked = $('input:checked');
if ($checked.length)
{
var selector = $checked.map(function ()
{
return '.' + $(this).attr('rel');
}).get().join();
$lis.hide().filter(selector).show().addClass("show");
console.log(selector)
}
else
{
$lis.show().removeClass("show");
}
});
})
Html:
<div class="tags">
<fieldset class="filter-grp">
<label><input type="checkbox" rel="white" name="year" /> white </label><br>
<label><input type="checkbox" rel="blue" name="year" /> blue </label><br>
<label><input type="checkbox" rel="yellow" name="year" /> yellow </label><br>
</fieldset>
<br>
<fieldset class="filter-grp">
<label><input type="checkbox" rel="horse" name="type" /> horse</label><br>
<label><input type="checkbox" rel="chicken" name="type" /> chicken</label><br>
<label><input type="checkbox" rel="cow" name="type" /> cow</label><br>
</fieldset>
<br>
</div>
<ul class="results">
<li class="white cow">white cow</li>
<li class="white horse">white horse</li>
<li class="white chicken">white chicken</li>
<li class="yellow cow">yellow cow</li>
<li class="blue horse">blue horse</li>
<li class="white chicken">white chicken</li>
</ul>
test here :) http://jsfiddle.net/d6Zyr/9/
,in CSS selectors means OR not AND, so clicking "white" and "horse" means "everything that's white OR everything that's a horse". – Pointy Jan 20 at 15:10whitenhorsedo you need onlywhite horse..?? – A.V Jan 20 at 15:12