Which CSS selectors can you NOT use in jQuery?
You cannot use pseudo-classes such as :not or :last-of-type.
:not
:last-of-type
You cannot use multiple class selectors such as .class1.class2.
.class1.class2
You cannot use IDs and classes together, such as #element.class.
#element.class
None. All CSS selectors are compatible in jQuery.