name
pageTree ( )
import prohtml.*;

HtmlTree htmlTree;

void setup(){
  //enter your url here
  htmlTree = new HtmlTree("http://www.yoururl.com");
  htmlTree.pageTree.printElementTree(". ");

  println("colors:..............."+htmlTree.colors);
  println("pageTree:............."+htmlTree.pageTree);
  println("parentUrlPart:........"+htmlTree.parentUrlPart);
}
description
PageTree is a field containing the tree structure of the document. It contains every element, excluding comments and scripts. PageTree is a HtmlElement so see its methods for further information.
syntax
pageTree;
usage
Web & Application
related