Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Logs an XML node object to the console.
![]() |
Syntax
console.dirxml(value);
Parameters
- value [in]
Type: xml node
Return value
This method does not return a value.
Remarks
Here is an example of how this would be used.
var parser = new DOMParser();
var xml = parser.parseFromString("<books isbn=\"1111\"><book><title>Hello world!</title></book></books>", "application/xml");
console.dirxml(xml);