document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. $.ajax({
  2.  
  3.     url : ...,
  4.  
  5.     success : function(){
  6.         $.trigger(\'save.success\') //note namespaced event
  7.     },
  8.  
  9.     error : function(){
  10.         $.trigger(\'save.error\');
  11.     }
  12. });
');