Skip to content

Instantly share code, notes, and snippets.

@vbilopav
Last active September 4, 2015 07:38
Show Gist options
  • Save vbilopav/b7fc1c4c2b916aa4b188 to your computer and use it in GitHub Desktop.
Save vbilopav/b7fc1c4c2b916aa4b188 to your computer and use it in GitHub Desktop.
$.ajax({
url: "http://localhost:53920/MyServiceSample.svc/json/DoSomeWork?request=" +
JSON.stringify({ Param1: 1, Param2: "bla"})
contentType: "application/json",
dataType: "json",
type: "GET",
success: function(data) {
if (data.success) {
// do some stuff...
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment