JQUERY Dynamic Event Binding

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