Код: Выделить всё
Report incident
Add Asset
function addField() {
var container = document.getElementById("additionalAssetFieldContainer");
var newField = document.createElement("div");
var input = document.createElement("input");
input.type = "text";
input.name = "additional_asset_name[]";
input.placeholder = "Additional asset";
newField.appendChild(input);
var removeButton = document.createElement("button");
removeButton.type = "button";
removeButton.textContent = "Remove Asset";
removeButton.onclick = function() {
container.removeChild(newField);
};
newField.appendChild(removeButton);
container.appendChild(newField);
}
Подробнее здесь: https://stackoverflow.com/questions/784 ... contains-a
Мобильная версия