JQuery Dynamic Ereignisbindung
$(document).on("click", "a.remove" , function() {
$(this).parent().remove();
});
Nervous Newt
$(document).on("click", "a.remove" , function() {
$(this).parent().remove();
});