remoe all children of element js code example
Example: js remove all children
var node= document.getElementById("parent");while (node.firstChild) { node.removeChild(myNode.firstChild);}
var node= document.getElementById("parent");while (node.firstChild) { node.removeChild(myNode.firstChild);}