Skip to content

Instantly share code, notes, and snippets.

@rexar1988
Last active July 30, 2020 16:46
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 rexar1988/5a8fc1e55f4ba656959413c46bedd015 to your computer and use it in GitHub Desktop.
Save rexar1988/5a8fc1e55f4ba656959413c46bedd015 to your computer and use it in GitHub Desktop.
Create and append element in Vanilla JavaScript
// Элемент который нужно вставить
const element = document.querySelector('.element');
// Элемент-контейнер после которого мы вставим контент
const parentElement = document.querySelector('.parent-element');
// Вставка
parentElement.after(element)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment