I was looking for some sort of syntax rule which differentiates the two and I was thinking that maybe the jQuery filters always use a :.
However, some CSS selectors also use a :.
Does anyone have any smart tips for knowing if it is a CSS selector or a jQuery filter being used?
This is one of the most annoying things about selector libraries adopting CSS syntax within their own extensions: because both match-based filters and true pseudo-classes are lumped together in an umbrella term known as "pseudo-selectors" (which basically means "selectors that begin with a :"), the only way to tell whether a "pseudo-selector" is a filter or a true simple selector is by knowing what it does, which if you're unfamiliar with the selector often means referring to the jQuery documentation as mentioned by others here. You'll notice that most of these match-based filters will have the word "match" somewhere in their descriptions; that is a reasonable indicator that a "pseudo-selector" works as a filter.
There is a subcategory of Selectors in jQuery called Basic Filters, however the name is completely misleading and the selectors themselves poorly categorized; not all of them are actual filters but some of them function like true pseudo-classes! At least the jQuery Extensions category has a proper name.
In fact, for the sake of easy reference, here is a list of jQuery selectors that work as match-based filters, and therefore are not true simple selectors by the definition in the Selectors spec:
These selectors take a set of matched elements and filter them, as opposed to other regular selectors which take an element and make deductions of what it is based solely on the information about the element, provided by the DOM or otherwise.
The :eq(), :gt(), :lt(), :even and :odd selectors are very often compared to :nth-child() and :nth-last-child(), as well as :first to :first-child and :last to :last-child. However, they are vastly different in terms of functionality. Be very careful in choosing which selector to use.
Also worth mentioning is the :not() selector; although I don't consider it as the same kind of filter as the above selectors, it's important to remember that jQuery extends it from what's actually offered in CSS. The differences are detailed in this question. I imagine that it's categorized under Basic Filters anyway because of .not(), which is most definitely for all its intents and purposes a filter method, and the antithesis of .filter().