[jQuery] Button Updating Help

[jQuery] Button Updating Help


This is my code:
$(document).ready(function() {
    $('.add_letter_code_object').click(function(event) {
        $('#objects').append('<html code>')
    });
});
What im trying to do is when you click the + button it appends a new
object which also has a + button to add more, the problem I'm having
is when you try to use the + button on the NEWLY created object it
doesn't work, is there a way for updating a function upon appending
new objects ( or code )? Thanks for any suggestions and help