I would like to use jquery to build a dynamic add/ remove form. IT should look like:
Name Type Required?
The example input :
You need to create the element.
input = jQuery('');
and then append it to the form.
jQuery('#formID').append(input);
to remove an input you use the remove functionality.
jQuery('#inputid').remove();
This is the basic idea, you may have feildsets that you append it too instead, or maybe append it after a specific element, but this is how to build anything dynamically really.