Hello,
i have this PHP based doc (chatbox) where you can type your message and send it.
Now, i have this fade animation where a message comes in when a message is send. Looks like this:
Javascript:
function stateChanged1()
{
if (xmlHttp1.readyState==4)
{
document.getElementById("sent").innerHTML="Sent!";
document.writeform.message.value="";
chat();
}
}
in the body:
<span id="sent"></span>
The problem is then it isnt fading out. What do i have to add to the code and where?