Element.addChild

Family of convenience functions to quickly add a tag with some text or other relevant info (for example, it's a src for an <img> element instead of inner text). They forward to Element.make then calls appendChild.

div.addChild("span", "hello there");
div.addChild("div", Html("<p>children of the div</p>"));
  1. Element addChild(string tagName, string childInfo, string childInfo2)
    class Element
    addChild
    (
    string tagName
    ,
    string childInfo = null
    ,
    string childInfo2 = null
    )
    out (e) {}
  2. Element addChild(Element e)
  3. Element addChild(string tagName, Element firstChild, string info2)
  4. Element addChild(string tagName, Html innerHtml, string info2)
Suggestion Box / Bug Report