Back to Content

console: dirxml() static method

files/en-us/web/api/console/dirxml_static/index.md

latest1022 B
Original Source

{{APIRef("Console API")}}

The console.dirxml() static method displays an interactive tree of the descendant elements of the specified XML/HTML element. If it is not possible to display as an element the JavaScript Object view is shown instead. The output is presented as a hierarchical listing of expandable nodes that let you see the contents of child nodes.

Syntax

js-nolint
console.dirxml(object)

Parameters

  • object
    • : A JavaScript object whose properties should be output.

Return value

None ({{jsxref("undefined")}}).

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also