how to add p in div first child javascript code example
Example 1: how to add first child using js
var eElement; // some E DOM instance
var newFirstElement; //element which should be first in E
eElement.insertBefore(newFirstElement, eElement.firstChild);
Example 2: append element in a div as first child
ParentNode.insertBefore(<your element>, ParentNode.firstChild);