Skip to content

Instantly share code, notes, and snippets.

@simbesh
Created November 2, 2020 04:02
Show Gist options
  • Save simbesh/3f148ee1c90d32622c7e15449ad08018 to your computer and use it in GitHub Desktop.
Save simbesh/3f148ee1c90d32622c7e15449ad08018 to your computer and use it in GitHub Desktop.
function insertAfter(newNode, existingNode) {
existingNode.parentNode.insertBefore(newNode, existingNode.nextSibling);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment