a1exlism
11/21/2017 - 7:56 AM

DOM-append/prependChild.md

2017version

support: IE8+

targetElement.insertAdjacentElement(position, element);

'beforebegin': Before the element itself.
'afterbegin' : Just inside the element, before its first child.
'beforeend' : Just inside the element, after its last child.
'afterend' : After the element itself.

Before

function prependChild(parentEle, newFirstChildEle) {
    parentEle.insertBefore(newFirstChildEle, parentEle.firstChild)
}