HTML DOM Tree
Previous  Top  Next

Icon&Image
Node Type
Description
NodeType_DOC
Document
A document object represents the HTML document in a given browser window. Note that documents can contain sub-documents, for example, if the HTML page contains framesets, Sub-documents are presented as sub nodes of the frames node.

see also:Document Inspector

NodeType_HTMLDOM

HTML DOM

Complete HTML DOM tree for structural representation of this web document. Every tree node is a HTML DOMNode.

see also: DOMNode Inspector
NodeType_Links
Links
All the link and area objects in an HTML document. The objects are in the same order as they appear in the document.

see also:Links Inspector
NodeType_Images
Images/Flashes
All the images/Flashes in a HTML document. The images are in the same order as they appear in the document.

see also:Images Inspector
NodeType_FORMS
Forms
All the form objects in a HTML document. The objects are in the same order as they appear in the document.

Forms enable client-side users to submit data to a server in a standardized format. The creator of a form designs the form to collect the required data using a variety of controls, such as INPUT or SELECT. Users viewing the form fill in the data and then click the Submit button to send the data to the server. A script on the server then processes the data.

see also: Form Inspector
NodeType_Scripts
Scripts
All the script objects in a HTML document. The objects are in the same order as they appear in the document.

All embedded script source and external script files in the current webpage will be shown in the scripts page.
Nodetype_StyleSheet
Style Sheets
A collection of the style sheet objects exposed from the document object. Each style sheet object represents an individual style sheet that is defined for the document.

All embedded style sheets and external CSS files in the current webpage will be shown in the style-sheets page.
NodeType_Applets
Applet's/ActiveX
All the applet or object objects in a HTML document. The objects are in the same order as they appear in the document.
NodeType_Frames
Frames
All the frame or iframe objects in a HTML document.
Sub-documents are presented as sub nodes of the frames node.

webpageinspector_metatags
Mega Tags
All the mega tags in a HTML document. The objects are in the same order as they appear in the document.
webpageinspector_xmldataisland
XML Data Island
All the XML Data Island in a HTML document. The objects are in the same order as they appear in the document.