jQuery.contains()

jQuery.contains( container, contained ) Returns: Boolean

Description: Check to see if a DOM node is within another DOM node.

  • version added: 1.4jQuery.contains( container, contained )

    containerThe DOM element that may contain the other element.

    containedThe DOM node that may be contained by the other element.

Example:

Check if an element is inside another.

jQuery.contains(document.documentElement, document.body); // true
jQuery.contains(document.body, document.documentElement); // false