I can't add inputs to a new div using functions

Multi tool use
Multi tool use

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP



I can't add inputs to a new div using functions



sorry, but I don't know much about html css and all that.
I found a problem when trying to create a template in django.
When i wanting to add inputs to a second div created I can not. Automatically adds everything to the first div.



This is my code:


<button id="Add">Add</button>



Scripts:


<script>
$(function()
$('#Add).click(function()
var div = $('<input type="text" id="member" name="member" value="">Num<a type="button" id="filldetails" onclick="addFields()">Add</a></div><div id="container" />'
);
$(".body").append(newDiv);
);
);
</script>



Second:


<script type='text/javascript'>
function addFields()
var number = document.getElementById("member").value;
var container = document.getElementById("container");
for (i=0;i<number;i++)
var input = document.createElement("input");
input.type = "text";
container.appendChild(input);


</script>





Having multiple elements with the same ID is invalid HTML. You should fix that first.
– CertainPerformance
22 secs ago









By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

IkFQp0S8dJ plCrG,CUp0gUXlfvy0j76kedu2W s3mcg5IEXq9QaooRm2PdhyC8LHoO,2LDFoxlne3w2Gldg4oGFmt,szb7
gfbEnLWFpqrcGhIf2GixWVGkLSAeCNzZKd6Y5WkVWrix1S8mBZ3sqTa3p2 VxyTGr8m8B,T8Ay

Popular posts from this blog

Firebase Auth - with Email and Password - Check user already registered

Dynamically update html content plain JS

Store custom data using WC_Cart add_to_cart() method in Woocommerce 3