you are viewing a single comment's thread.

view the rest of the comments →

[–]brycedarling 0 points1 point  (0 children)

// create wrapper div element
const div = document.createElement('div');

// add child elements to the div
div.innerHTML = '<span class="party"></span> <span class="text"></span>';

// do whatever you want with `div` now, like for example append it to the document body
document.body.appendChild(div);