I have a jQuery-based form where you can add extra people to the application. I\'m cloning the first fieldset and adding it onto the end up to a max of 3 additional people.
Try:
$(document).on('click', '.remove', function() { $(this).parent().remove(); });
Events are bound on page load so newly added element aren't.