Skip to content

Instantly share code, notes, and snippets.

@krivaten
Last active August 6, 2019 00:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
createFragment
function createFragment(markup) {
const fragment = document.createRange().createContextualFragment(markup);
return fragment.firstChild;
}
const btnContainer = createFragment(`
<div class="container">
<button>Click Me</button>
</div>
`)
const btn = btnContainer.querySelector('button');
btn.addEventListener('click', (event) => console.log(event));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment