Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function traer(id){
  2. $.ajax({
  3. url: '../server/info.php',
  4. dataType: "json",
  5. cache: false,
  6. processData: false,
  7. contentType: false,
  8. data: {id: id},
  9. type: 'POST',
  10. success: (data) =>{
  11. $("#" + id).html(data);
  12. },
  13. error: function(){
  14. alert("Error con el servidor");
  15. }
  16. })
  17. }
  18. document.getElementById("marca").onclick=function(event){traer("marca");};
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement