Skip to content
Advertisement

How to appendChild(element) many times. (The same element)

My question is: Is that possible to add the same element without rewriting the same variable. I am creating a slider, and i need to append a div with a class slide-el into block slider. Here is a part of code

JavaScript

The problem is that I can’t append the same element that many times. It just creates one element instead of 4.

For you to understand better I made a fiddle:

https://jsfiddle.net/ud7dvn3z/

Advertisement

Answer

appendChild will remove the node from wherever it is before appending it to its new location, so you need to make copies of the node instead. You can use cloneNode for that. The true makes cloneNode perform a deep clone, i.e. with all its child nodes.

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement