I’m building an employment application form that’s dynamic. I want a field that asks for the number of prior employers, when they enter an number say 3 it will duplicate a div with these fields 3 times, subsequently updating each name and value field with a number at the end ex: field1, field2, field3.
Fields I need:
Employer Name, Title, Supervisor, Address, State, Zip, Phone
Does that make sense? How do I do this? I have no code expect a html input field.
I’d do it with a for loop and jquery’s append() function.