Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. if (request.myMessage == "Save"){
  2. $.ajax({
  3. type: "POST",
  4. url: "https://foobar.com:2078",
  5. username: "foo@bar.com",
  6. password: "foo",
  7. data: "Hello world",
  8. success: function(){
  9. console.log("foo");
  10. },
  11. error: function(){
  12. console.log("not working");
  13. }
  14. });
  15. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement