Guest User

Untitled

a guest
Feb 19th, 2018
67
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. async: true,
  3. crossDomain: true,
  4. crossDomain: true,
  5. url: "myajaxurl.com/api",
  6. method: "GET",
  7. headers: {
  8. "Authorization": "Basic " + btoa('pubkey-NgfPoF0x0GIo0uA6a792SuBb8TL73I' + ":" + 'key-QJ6W6i1gPBSbMqO21071rdkPV38g0G')
  9. },
  10. success: function (data) {
  11. console.log(data);
  12. }
  13.  
  14. });
  15.  
  16. console.log(data); // this is not working 'data is not defined'
Add Comment
Please, Sign In to add comment