Possible Duplicate:
Web based text chat?
I want to create a webpage which allow me to share what i write in textbox and write it in the other host open the website ... anyone can help ?
thank you
amen
Possible Duplicate:
Web based text chat?
I want to create a webpage which allow me to share what i write in textbox and write it in the other host open the website ... anyone can help ?
thank you
amen
store the 'writings' centrally (in some database)
then all hosts query from there.
I think the most basic method is by using ajax calls. One on every keyup to send the message the first host is typing. And one every second or so to get the message being typed.
Another method is by using web sockets