module Named:sig..end
Dom manipulation by element identifier.
The module Named defines the same functions as
Eliom_dom. They take as parameter an element identifier
instead of an element with Dom semantics. Those functions only
works if the element is available in the application (sent in
the page or along the page). If the element is not available,
those functions raise with Not_found.
val appendChild : ?before:'a Eliom_content.Svg.elt ->
'b Eliom_content.Svg.Id.id -> 'c Eliom_content.Svg.elt -> unitsee appendChild
val appendChildren : ?before:'a Eliom_content.Svg.elt ->
'b Eliom_content.Svg.Id.id -> 'c Eliom_content.Svg.elt list -> unitsee appendChildren
val removeChild : 'a Eliom_content.Svg.Id.id -> 'b Eliom_content.Svg.elt -> unitsee removeChild
val replaceChild : 'a Eliom_content.Svg.Id.id ->
'b Eliom_content.Svg.elt -> 'c Eliom_content.Svg.elt -> unitsee replaceChild
val removeChildren : 'a Eliom_content.Svg.Id.id -> unitsee removeChildren
val replaceChildren : 'a Eliom_content.Svg.Id.id -> 'b Eliom_content.Svg.elt list -> unitsee replaceChildren