insert child element javascript code example
Example 1: add a child html object to another html object in js
//Add child at end of object children list
parent.append(child);
//Add child at start of object children list
parent.insertBefore(child, list.childNodes[0]);
Example 2: javascript add element above
$( "<p>Test</p>" ).insertBefore( ".inner" );