Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
    Page
Library
Module
Module type
Parameter
Class
Class type
Source
Tyxml_js.Registerval html : ?head:Html_types.head Html.elt -> Html_types.body Html.elt -> unitRegister.html head body uses the given head and body elements as document. It replaces the previous body and head.
head and body can be reactive.
val body : ?keep:bool -> [< Html_types.body_content ] Html.elt list -> unitRegister.body elements add elements as children of body. If keep is false (default is true), the children of the body are removed before adding the new elements.
val head : ?keep:bool -> [< Html_types.head_content ] Html.elt list -> unitRegister.head elements add elements as children of body. If keep is false (default is true), the children of the head are removed before adding the new elements.
val id : ?keep:bool -> string -> 'a Html.elt list -> unitRegister.id "some_id" elements add elements as children of the node with the id "some_id". If keep is false (default is true), the children of the node are removed before adding the new elements.
Beware, this function ignores tyxml's type information.