586 B
586 B
title, tags
| title | tags |
|---|---|
| elementContains | browser,intermediate |
Returns true if the parent element contains the child element, false otherwise.
- Check that
parentis not the same element aschild, useparent.contains(child)to check if theparentelement contains thechildelement.
const elementContains = (parent, child) => parent !== child && parent.contains(child);
elementContains(document.querySelector('head'), document.querySelector('title')); // true
elementContains(document.querySelector('body'), document.querySelector('body')); // false