add(element=nil)
Instance Public methods
Adds an element
- element
-
if supplied, is either an Element, String, or Source (see Element.initialize). If not supplied or nil, a new, default Element will be constructed
- Returns
-
the added Element
1 2 3 | a = Element. new ( 'a' ) a.elements.add(Element. new ( 'b' )) #-> <a><b/></a> a.elements.add( 'c' ) #-> <a><b/><c/></a> |
Please login to continue.