Skip to content

Instantly share code, notes, and snippets.

@AleksandrChukhray
Last active July 7, 2020 15:51
Show Gist options
  • Select an option

  • Save AleksandrChukhray/d8573d3f2b9bad0b75936b3ee6f12839 to your computer and use it in GitHub Desktop.

Select an option

Save AleksandrChukhray/d8573d3f2b9bad0b75936b3ee6f12839 to your computer and use it in GitHub Desktop.
fragment
function fragment(html) {
var elt = document.createElement("div"); // Пустой элемент
var frag = document.createDocumentFragment(); // Пустой фрагмент
elt.innerHTML = html; // Содержимое элемента
while (elt.firstChild) // Переместить все узлы
frag.appendChild(elt.firstChild); // из elt в frag
return frag; // И вернуть frag
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment