Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

webbserverprogrammering/projekt/snake_oil_seller/js/

style.js

style.js

12 lines ASCII Windows (CRLF)
function createAlternative() {
  const answerDiv = document.getElementById("answerDiv");

  const id = 1 + (answerDiv.children.length / 2);

  const input = document.createElement("input");
  input.type = "text";
  input.name = "answer" + id;
  input.placeholder = "Alternativ";

  answerDiv.appendChild(input);
}