Skip to content

Instantly share code, notes, and snippets.

@y-gagar1n
Created June 20, 2013 05:30
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 y-gagar1n/5820503 to your computer and use it in GitHub Desktop.
Save y-gagar1n/5820503 to your computer and use it in GitHub Desktop.
jQuery - AJAX call
$.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
url: window.location.href + "/SomeMethod",
data: { paramA : valueA, paramB : valueB },
dataType: 'json',
success: function (response) {
...
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment