I have a form where I\'m dynamically adding the ability to upload files with the append function but I would also like to be able to remove unused fields. Here is the html m
You can call a reset function before appending. Something like this:
function resetNewReviewBoardForm() {
$("#Description").val('');
$("#PersonName").text('');
$("#members").empty(); //this one what worked in my case
$("#EmailNotification").val('False');
}