document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $.ajax({
  2.  
  3.     url : ...,
  4.  
  5.     success : function(){
  6.         $msg = $("<p>Success saving.</p>").hide();
  7.  
  8.         $(\'#messages\').append(
  9.             $msg;
  10.         );
  11.  
  12.         $msg.fadeIn("slow");
  13.     },
  14.  
  15.     error : function(){
  16.         ...
  17.     }
  18. });
');