You could also do this :
$('.newsbilder').click(function () {
var lbox = $('<div /* attributes */>alert on click</div>');
$("body").prepend(lbox);
lbox.click(function () {
alert(1);
});
});
It's worth noting that event delegation leads to extra operations which are not necessarily required, that is to say, whenever you click the BODY element, jQuery browses the clicked child's ancestors in order to check whether any of them matches the passed selector, as it happens, '.ansicht_gross'
.
Knowing this, imagine that a grumpy user starts clicking very quickly anywhere in the application... =D Well, it's a bit twisted but, keep in mind that the more there are selectors to check, the more there are comparisons to perform. So, careful usage required.
Further reading : Are there any drawbacks to listen events on document level in jQuery?