October 24, 2000 - Printing the DOM
October 24, 2000 Printing the DOM Tips: October 2000
Yehuda Shiran, Ph.D.
|
createTextRange()
method. This method creates a textRange
object that you can, among other operations, print. The following printRange()
function prints the textRange
object of the current tip's document:
<SCRIPT LANGUAGE="JScript">
<!--
function printRange() {
var range = document.body.createTextRange();
if (range!=null) {
alert(range.htmlText);
}
}
// -->
</SCRIPT>
Try it out. Examine the TABLE
's tags. You can see the TBODY
tag that is enclosing the table's content. The TBODY
tag is part of the DOM, although it is not part of the HTML source.
Learn more about the DOM in Columns 40, The DOM, Part I: Analysis, through Column 47, A DOM-Based Snakes Game, Part II.