Skip to content

Instantly share code, notes, and snippets.

@exp0nge
Last active August 29, 2015 14:26
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 exp0nge/5d5ed69e18154b3cb372 to your computer and use it in GitHub Desktop.
Save exp0nge/5d5ed69e18154b3cb372 to your computer and use it in GitHub Desktop.
$.ajax({
url: '/url/for/processing',
type: 'GET',
data: {csrfmiddlewaretoken: document.getElementsByName('csrfmiddlewaretoken')[0].value},
dataType: 'json',
success: function (response) {
console.log('OK');
},
error: function (response) {
console.log(response);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment