Skip to content

Instantly share code, notes, and snippets.

@rgwozdz
Created December 16, 2013 04:13
Show Gist options
  • Save rgwozdz/7982174 to your computer and use it in GitHub Desktop.
Save rgwozdz/7982174 to your computer and use it in GitHub Desktop.
Ajax POST
$.ajax({
context: this,
type: 'POST',
data: {},
dataType: "json",
url: '',
success: function(data, textStatus, jqXHR){},
error: function(jqXHR, textStatus, errorThrown){}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment