There's nothing built-in jQuery that allows you to achieve that. You may take a look at the livequery plugin. For example:
$('#element').livequery(function() {
// CODE
});
When an element with id="element" is added to the DOM the callback should be executed.