Package jodd.csselly.selector
package jodd.csselly.selector
Different CSSelector selectors.
-
ClassDescriptionAttribute selector.
Attributerelation matcher.Pseudo class definition.Simple collection ofPseudoClassimplementations.Selects all button elements and elements of type button.Selects all elements of type checkbox.Selects all elements that are checked.Represents an element that has no children at all.Selects even elements, zero-indexed.Selects all elements of type file.Selects the first matched element.Same as:nth-child(1).Same as:nth-of-type(1).Selects all elements that are headers, like h1, h2, h3 and so on.Selects all elements of type image.Selects all input, textarea, select and button elements.Selects the last matched element.Same as:nth-last-child(1).Same as:nth-last-of-type(1).Selects odd elements, zero-indexed.Represents an element that has a parent element and whose parent element has no other element children.Represents an element that has a parent element and whose parent element has no other element children with the same expanded element name.Select all elements that are the parent of another element, including text nodes.Selects all elements of type password.Selects all elements of type radio.Selects all elements of type reset.Represents an element that is the root of the document.Selects all elements that are selected.Selects all elements of type submit.Selects all elements of type text.Pseudo class selector.Pseudo functions.Pseudo-function expression, in form:an + b.Selects all elements that contain the specified text.Select the element at index n within the matched set.Select all elements at an index greater than index within the matched set.Selects elements which contain at least one element that matches the specified selector.Select all elements at an index less than index within the matched set.Selects all elements that do not match the given selector.The:nth-child(an+b)pseudo-class notation represents an element that has an+b-1 siblings before it in the document tree, for any positive integer or zero value of n, and has a parent element.The:nth-last-child(an+b)pseudo-class notation represents an element that has an+b-1 siblings after it in the document tree, for any positive integer or zero value of n, and has a parent element.The:nth-last-of-type(an+b)pseudo-class notation represents an element that has an+b-1 siblings with the same expanded element name after it in the document tree, for any zero or positive integer value of n, and has a parent element.The:nth-of-type(an+b)pseudo-class notation represents an element that has an+b-1 siblings with the same expanded element name before it in the document tree, for any zero or positive integer value of n, and has a parent element.Pseudo function selector.