var count = 0;
var chat_mode = 'all';
function ChatGetMess(){ jQuery.getJSON('chat_gm.php?chat_mode='+chat_mode+'', {}, function(json){
for(var k in json.messages){
count++;
jQuery('#mes').append('<div class=\"shoutbox-list\" id=\"list-'+count+'\">' + ShowMessage(json.messages[k]) + '</div>');
$('#list-'+count).fadeIn('slow');
$(function(){
$('.scroll-pane').jScrollPane({showArrows:true, scrollbarWidth:16, dragMaxHeight:20});
});
$('#mes').scrollTop($('#mes').height()||0);
}
});
timeoutID = setTimeout(ChatGetMess, 5000);
} |