Click to Rate and Give Feedback
Properties
 documentElement Property
documentElement Property

Gets a reference to the root node of the document.

Syntax

[ oElement = ] document.documentElement

Possible Values

oElement Object that receives the reference to the document element.

The property is read-only. The property has no default value.

Remarks

The root node of a typical HTML document is the html object.

Example

This example uses the documentElement property to get the innerHTML property of the entire document.

<SCRIPT>
function fnGetHTML(){
   var sData = document.documentElement.innerHTML;
   oResults.value=sData;
}
</SCRIPT>

<TEXTAREA ID = oResults COLS = 50 ROWS = 10>
</TEXTAREA>

Standards Information

This property is defined in World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 World Wide Web link.

Applies To

document
Tags What's this?: Add a tag
Community Content
 
Add Community Content
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker