Posts by PP Magno • 26 points
1 post
-
1
votes2
answers47
viewsA: How do I create a "+" button that adds new fields to my form
When you use element.innerHTML +=, all elements within element are removed and put back together. You can solve using the appendChild, but you can also organize the html to make it easy to copy and…