Find element in DOM by mutliple classes

If you want an intersection, just write the selectors together without spaces in between.
$('.a.b')
So for an element that has an ID of a with classes b and c, you would write:
$('#a.b.c')