I want to select all the elements that have the two classes a and b.
a
b
So, only the e
$('.a .b , .a .c').css('border', '2px solid yellow'); //selects b and c
a b c d