up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

Where is your 'fading out' code? There is nothing to do with fading in the posted snippet. – bobince Oct 19 '09 at 12:33
feedback

4 Answers

up vote 3 down vote accepted

Add

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

to your HTML and add this JavaScript Code:

$("#sent").fadeOut("slow");

after this line:

document.getElementById("sent").innerHTML="Sent!";
link|improve this answer
Works. but for slow it is going quite fast. And the weird thing of my code is also that if i send a message again, it won't display the 'Sent!' text again. Do you need some kind of extra script for it? – gdscei Oct 19 '09 at 12:27
To show up the "Send!" message again use $("#sent").fadeIn("fast"); – powtac Oct 19 '09 at 12:50
where to put that...? – gdscei Oct 19 '09 at 15:16
Maybe before document.getElementById("sent").innerHTML="Sent!"; ? – powtac Oct 19 '09 at 16:44
Super old, but for those finding this, you can set milliseconds as well as one of the parameters. api.jquery.com/fadeOut – jchapa Dec 9 '11 at 5:05
feedback

For Effects like fading out use a framework like JQuery, Prototype or MooTools. They will provide you with ample examples how to apply effects to elements.

link|improve this answer
+1 on jQuery usage. – Adrian Godong Oct 19 '09 at 11:54
+1 For mentioning the various frameworks available to solve this problem – Vijay Dev Oct 19 '09 at 12:33
feedback

try jquery you can fadein and fade out an element easly e.i:

$("#sent").fadeIn("slow");
$("#sent").fadeOut("slow");
link|improve this answer
feedback

i also recommend that you should use jquery's fade in and fade out function. for a deeper explanation and code samples please goto: http://docs.jquery.com/Effects/fadeOut

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.