Skip to content

Instantly share code, notes, and snippets.

@paulobsf
Created June 14, 2010 14:05
Show Gist options
  • Save paulobsf/437720 to your computer and use it in GitHub Desktop.
Save paulobsf/437720 to your computer and use it in GitHub Desktop.
jQuery Ajax Request
$.ajax({
url: url,
data: params,
dataType: 'json',
success: function(rcvData) {},
error: function() {}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment