Skip to content

Instantly share code, notes, and snippets.

@steadicat
Created August 26, 2010 18:49
Show Gist options
  • Save steadicat/551958 to your computer and use it in GitHub Desktop.
Save steadicat/551958 to your computer and use it in GitHub Desktop.
jQuery.ajax({
type: "PUT",
url: "http://key:[email protected]:5984/staging/doc1",
data: '{}',
contentType: "application/json",
success: function (data, textStatus, XMLHttpRequest) {
alert("ok " + data);
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert("ko"); // {}, "error", undefined
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment