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.
The elements don't originally exist, which means you need to use .live() or .delegate()
.live()
.delegate()
For example, change:
use $(".remove").click(...) instead of $(".remove").live("click", ...) this
$(".remove").click(...)
$(".remove").live("click", ...)