Skip to content

Instantly share code, notes, and snippets.

@yuheiy
Created October 3, 2015 13:09
Show Gist options
  • Save yuheiy/4180367f769d06ef124f to your computer and use it in GitHub Desktop.
Save yuheiy/4180367f769d06ef124f to your computer and use it in GitHub Desktop.
var empty = function (el) {
while (el.firstChild) {
el.removeChild(el.firstChild);
}
};
var container = document.getElementById('container');
empty(container);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment