Advertisement
Guest User

Untitled

a guest
Sep 29th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function prueba() {
  2. $.ajax({
  3. url: "webserv",
  4. type: "POST",
  5. data: {username: "user", password: "pass"},
  6. dataType: "xml",
  7. contentType: "aplication/xml; charset=utf-8",
  8. success: function (resp) {
  9. console.log(resp);
  10. },
  11. error: function () {
  12. alert("Do!");
  13. }
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement