jQuery 1.3
Bei jQuery 1.3 gibt es Suport für “live events”.
$("p").live("click", function(){
$(this).after("<p>Another paragraph!</p>");
});
In otherwords, HTML returned via AJAX can have behaviors that bound to it forever, no matter where, or when the HTML makes its first appearance.
via Nick Lewis

