How to insert new input field

How to click a button and insert a new input field? possible?

For me, I want to click the add more button and then have 3 new input fields
(email, first name, last name) below the latest one.

Hi Nim,

Kindly please check below url,

Building a basic text box is straightforward:

  1. Create an input element. The <input> tag creates the general structure of the element.
  2. Set the type to “text“ to indicate that you’re building a standard text element, not something more elaborate.
  3. Add an id attribute to name the element.
  4. Add default data.

This topic was automatically closed after 70 days. New replies are no longer allowed.