ExampleSelect all p elements containing "is":
Try it yourself » |
The :contains selector selects elements containing the specified string.
The string can be contained directly in the element as text, or in a child element.
This is mostly used together with another selector to select the elements containing the text in a group (like in the example above).
$(":contains(text)") |
Parameter | Description |
---|---|
text | Required. Specifies the text to find |