154place
2 votes Vote

allow multiple fields for input

be able to structure the format of the response

dannyanders, 12.10.2012, 02:09
Idea status: under consideration

Comments

rachelgomez123, 03.09.2022, 08:13
Steps are given below-

You need to implement jQuery to change the HTMLs DOM.

So, you add this in your tags:


You need to modify your HTML like this:





Add more fields


Then you need to use this jQuery code:


$("button").on("click",function(){
var extra = $(this).attr("extra") + 1;
$("form").append("");
$(this).attr("extra",extra);
}


This may help you,
Rachel Gomez

Leave a comment