$(document).ready(function(){ var msg_template = '
'; $('.chat-message button').click(function(){ var input = $(this).siblings('span').children('input[type=text]'); if(input.val() != ''){ add_message('You','img/demo/av1.jpg',input.val(),true); } }); $('.chat-message input').keypress(function(e){ if(e.which == 13) { if($(this).val() != ''){ add_message('You','img/demo/av1.jpg',$(this).val(),true); } } }); setTimeout(function(){ add_message('Linda','img/demo/av2.jpg','Hello Every one do u want to freindship with me?') },'1000'); setTimeout(function(){ add_message('Mark','img/demo/av3.jpg','Yuppi! why not sirji!!.') },'4000'); setTimeout(function(){ add_message('Linda','img/demo/av2.jpg','Thanks!!! See you soon than') },'8000'); setTimeout(function(){ add_message('Mark','img/demo/av3.jpg','ok Bye than!!!.') },'12000'); setTimeout(function(){ remove_user('Linda','Linda') },'16000'); var i = 0; function add_message(name,img,msg,clear) { i = i + 1; var inner = $('#chat-messages-inner'); var time = new Date(); var hours = time.getHours(); var minutes = time.getMinutes(); if(hours < 10) hours = '0' + hours; if(minutes < 10) minutes = '0' + minutes; var id = 'msg-'+i; var idname = name.replace(' ','-').toLowerCase(); inner.append('
'
+''+name+' - '+hours+':'+minutes+''
+''+msg+'
User '+name+' left the chat
'); $('#'+id).hide().fadeIn(800); } });