I add the forms in this way
<script> function append(id) { var node = document.getElementById(id), newNode = document.createElement('div'); newNode.innerHTML = '<input type="text" name="name[]" value="" />'; node.appendChild(newNode); return newNode; } </script> <div id="test"></div> <a href="" onclick="append('test'); return false;">CLICK</a>
And how to make the removal of a particular form? Something I do not think.