Skip to content

Instantly share code, notes, and snippets.

@lotsofcode
Created July 31, 2014 14:30
Show Gist options
  • Save lotsofcode/93ec612fb2b8bb4801c6 to your computer and use it in GitHub Desktop.
Save lotsofcode/93ec612fb2b8bb4801c6 to your computer and use it in GitHub Desktop.
JavaScript implementation of "prependChild"
Element.prototype.prependChild = function(newElement) {
return this.insertBefore(newElement, this.firstChild);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment