css selector excluding class

Developer from somewhere

This would find you all the elements that are

1
.some.class
but not
1
.some_other_class

$(".some.class").not(".some_other_class")