So I am working on something that wasn\'t well thought out in the build from the backend team. That leaves me with a document full of divs.
What I am doing is rolling b
You can select elements with multiple classes like so:
$("element.firstClass.anotherClass");
Simply chain the next class onto the first one, without a space (spaces mean "children of").