The Jsoup selector-syntax is pretty straightforward for pinpointing any element by id, class or attribute.
But I haven’t found (yet) the proper syntax for:
“find all
<a>elements that
don’t have a class name (any class name)”
Is there special Jsoup syntax for that? or will I have to find all <a> elements and check myself whether it has a class name?
This CSS selector picks up
<a>elements without aclassattribute: