Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function dameCheques(){
  2.  
  3. return $.ajax({
  4. type: "POST",
  5. url: "//localhost/gestionweb/includes/php/procesocheque.php",
  6. data: { "accion":"listarc"},
  7. dataType:"json",
  8.  
  9. error: function(){
  10. alert("error petición ajax");
  11.  
  12. },
  13. success:function(data){
  14.  
  15. },
  16. });
  17.  
  18. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement