js dom appendchild(createelement) code example
Example 1: create element javascript with id
var btn = document.createElement('div');
btn.setAttribute("id", "div1");
Example 2: appendchild on specific position
parentElement.insertBefore(newElement, parentElement.children[2]);