jQuery(document).ready(function(){
function last_msg_funtion()
{
var ID=jQuery(".message_box:last").attr("id");
jQuery('div#last_msg_loader').html('<img src="/includes/forum_panel/bigLoader.gif">');
jQuery.post("/includes/forum_panel/load_second.php?action=get&last_msg_id="+ID,
function(data){
if (data != "") {
jQuery(".message_box:last").after(data);
}
jQuery('div#last_msg_loader').empty();
});
};
jQuery('.videocomments').scroll(function(){
if (this.scrollTop==this.scrollHeight-this.clientHeight ){
last_msg_funtion();
}
});
});
После последнего дива с классом message_box вставляется нтмл код в котором не работают скрипты
Как заставить их работать в том что сделал after?