Guest User

Untitled

a guest
Jan 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $.ajax({
  2. type: "POST",
  3. contentType: "application/x-www-form-urlencoded",
  4. url: "http://website/index.php",
  5. data: { username: "myuser", password: "123456" },
  6. success: function(data) {
  7. console.log("success ", data.response);
  8. },
  9. error: function(data) {
  10. console.log("error ", data.error);
  11. },
  12. dataType: "html"
  13. });
Add Comment
Please, Sign In to add comment