Skip to content

Instantly share code, notes, and snippets.

@thanapongp
Created October 23, 2019 04:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thanapongp/978520bc0b106df53259e7c469cf884b to your computer and use it in GitHub Desktop.
Save thanapongp/978520bc0b106df53259e7c469cf884b to your computer and use it in GitHub Desktop.
intsertAfter function
export function insertElementAfter(newNode, referenceNode) {
referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment