Guest User

Untitled

a guest
Jun 22nd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $.ajax({
  2. type: "POST",
  3. url: "ajax.php",
  4. data: "text="+ text,
  5. beforeSend: function(){
  6. $('#data li').fadeOut(500);
  7. },
  8. success: function( daten ) {
  9. window.setTimeout( function() {
  10. $('#data li').html( daten );
  11. },500);
  12. },
  13. complete: function(){
  14. $('#data li').fadeIn(500);
  15. }
  16.  
  17. });
Add Comment
Please, Sign In to add comment