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