Dirxml
From FirebugWiki
Revision as of 11:00, 13 July 2012 by Sebastianz (Talk | contribs)
Prints the XML source tree of an HTML or XML node.
This includes the node itself plus all it's descendants and looks identical to the view inside the HTML Panel. You can click on any node to inspect it in the HTML panel.
Contents |
[edit] Syntax
dirxml(node)
[edit] Parameters
[edit] node
HTML or XML node to display. (required)
[edit] Examples
dirxml(document.body)
Displays the whole element tree structure of the <body> tag.
dirxml($("element"))
Displays the whole element tree struction of the element with the id element using the $ command.