previous_element()
Instance Public methods
Returns the previous sibling that is an element, or nil if there is no Element sibling prior to this one
1 2 3 | doc = Document. new '<a><b/>text<c/></a>' doc.root.elements[ 'c' ].previous_element #-> <b/> doc.root.elements[ 'b' ].previous_element #-> nil |
Please login to continue.