JavaScript Agregar elemento junto a otro
function insertAfter(newNode, referenceNode) {
referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling);
}
Blushing Baboon