In my code, I fairly frequently need to replace all children of a certain HTML container with a new list of children.
What is the fastest way to do this? My current appr
A possible alternative where setting innerHTML doesn't work:
while(container.firstChild) { container.removeChild(container.firstChild); } container.appendChild(newChild)