Hello all!
I have this
The process would be following:
1. Someone would access some.php
2. That php would post data to the ape server
3. The ape server would trigger the above jquery and show the data what it
was posted to it.
The question:
How could i make this to work?
// your css would need to set .response to be display: none
$('body').append('<div class="response">'+raw.data+'</div>');
$('.response').fadeIn(500, function(){
// in this callback (which runs once the fadeIn animation is complete),
// we will tell .response to disappear after 10 seconds
setTimeout(function(){
$('.response').fadeOut(500);
}, 10000);
});
--
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/