## Feature goal (From JSoup [docs](https://jsoup.org/cookbook/extracting-data/selector-syntax)) > :has(selector): find elements that contain elements matching the selector; e.g. div:has(p) ```elixir input = “foo$100foo” result = Floki.find(html, “div:has(p) > h2”) ```
Feature goal
(From JSoup docs)