This replaces the content in #message_here, each time. How do I get it to keep adding the content, by creating new divs for each message?
var last_mess_id = 1;
$('#load_mess').click(function(){
$('#messages_here').load('ajax/get_message.php?last_mess_id='+last_mess_id);
last_mess_id++;
})