Dom.Documentval title : t -> stringThe title of the document.
val set_title : string -> t -> unitset_title str doc Set the title of the document.
The body of the document.
Precondition: The document must have been loaded!
Never call this function before the page has been loaded.
find id doc Find the element with the id attribute id in the document doc. Uses the javascript method getElementById.
create_text_node text Create a new text node with content text.
Create a new document fragment.
A document fragment is a special node with no parent. Adding children to the fragment does not affect the dom i.e. does not cause reflow and repaint, because the fragment is not part of the active dom.
If you call
node.append(fragment)all the children the fragment are appended to node instead of the fragment, leaving an empty fragment behind.