For example, I have such a structure
<Element1>Text1</Element1> <Element2>Text2</Element2> So how can I raise the second element so that it is above the first one?
For example, I have such a structure
<Element1>Text1</Element1> <Element2>Text2</Element2> So how can I raise the second element so that it is above the first one?
Source: https://ru.stackoverflow.com/questions/542862/
All Articles
element.tagName("newTagName");- Yuriy SPb ♦Element.prependElement(String tag)andElement.appendElement(String tag)respectively - YuriyPb ♦