If you want to select a jquery element with 1 attribute that equals a value is simple:
$(".element[attribute1='true']").hide();
But what if you want to select an element with 2 equal attributes?
$(".element[attribute1='true', attribute2='false']").hide();
That won't work.