function chatReceived(tid,val){ var color = "blue"; if (tid == myid){ color = "grey"; $('#chat_conversation').append('
You:
'+val+'
'); } else $('#chat_conversation').append('
'getName(tid)+':
'+val+'
'); $('#chat_conversation').scrollTop = $('#chat_conversation')/scrollHeight; }