Hello, I would like to create multiple groups using javascript. So for now I have one group of content and I want to duplicate it X amount of times with different labels. Is it possible? I searched for solution and found old answer that it was being implemented. LINK
I tried doing it like this
const htmlParent = document.querySelector('.quform-child-elements');
const x = document.querySelector('.quform-element-3_107');
for(let i = 0; i < 5; i++) {
const clonedNode = x.cloneNode(true);
x.appendChild(clonedNode);
}
but naturally it gives me a lot of errors because ID’s cannot be used multiple times per page.