vote up 0 vote down star

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?

flag

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

4 Answers

vote up 2 vote down check

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|flag
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? – YourComputerHelpZ Oct 19 at 12:27
To show up the "Send!" message again use $("#sent").fadeIn("fast"); – powtac Oct 19 at 12:50
where to put that...? – YourComputerHelpZ Oct 19 at 15:16
Maybe before document.getElementById("sent").innerHTML="Sent!"; ? – powtac Oct 19 at 16:44
vote up 5 vote down

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|flag
+1 on jQuery usage. – Adrian Godong Oct 19 at 11:54
+1 For mentioning the various frameworks available to solve this problem – Vijay Dev Oct 19 at 12:33
vote up 1 vote down

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

$("#sent").fadeIn("slow");
$("#sent").fadeOut("slow");
link|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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