Let\'s say I use jQuery to load new content into a specific DIV element. If I now want to catch events from inside that DIV element, I assume the DOM has to be updated someh
Use live like this:
$(".view").live("click",function(){ $(this).parent().load("view"); });