Skip to content

Instantly share code, notes, and snippets.

@prashtx
Created May 22, 2012 00:06
Show Gist options
  • Save prashtx/2765574 to your computer and use it in GitHub Desktop.
Save prashtx/2765574 to your computer and use it in GitHub Desktop.
jquery json post
$.ajax(create_url, {
contentType: 'application/json',
dataType: 'json',
type: 'POST',
data: JSON.stringify(data)
})
.done(function(result) {
var id = result.surveys[0].id;
navigateToSurvey(id);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment