Skip to content

Instantly share code, notes, and snippets.

@shrekuu
Created September 27, 2022 08:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shrekuu/d38e0d0a1f2dbfd5ab08bf8525b6d96c to your computer and use it in GitHub Desktop.
Save shrekuu/d38e0d0a1f2dbfd5ab08bf8525b6d96c to your computer and use it in GitHub Desktop.
jquery CORS request example
return $.ajax({
url: 'https://another-domain.com/api/user/',
type: 'GET',
dataType: 'json',
xhrFields: {
withCredentials: true, // this line is required
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment