Advertisement
Guest User

Untitled

a guest
May 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function people_out(type){
  2.  
  3. var string = {};
  4. string.type=type;
  5. var string_json = JSON.stringify(string);
  6. $('#result').html('<img src="load.gif" alt=""/>');
  7. $.getJSON('templates/params/people_out.php',{action:'people_out',string:string_json},function(result){
  8.  
  9. if(result.result===true){
  10.   $('#result').html('Выгрузка прошла успешно!');
  11.  
  12. }
  13. else{
  14. $('#result').html('Нет данных для выгрузки!');
  15.  
  16. }
  17.  
  18.   });
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement