Skip to content

Instantly share code, notes, and snippets.

@dsimard
Created April 23, 2010 21:31
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 dsimard/377214 to your computer and use it in GitHub Desktop.
Save dsimard/377214 to your computer and use it in GitHub Desktop.
$.post("http://mysite.com/users",
{ userId : 100,
name : "John",
lastName : "Boucher" },
function(data) {
if (data.ok) {
alert("User saved!");
} else {
alert("User NOT saved.");
}
},
"jsonp"
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment