Skip to content

Instantly share code, notes, and snippets.

@slav123
Last active December 23, 2015 05:39
Show Gist options
  • Save slav123/6588613 to your computer and use it in GitHub Desktop.
Save slav123/6588613 to your computer and use it in GitHub Desktop.
ajax send
$.ajax({
type: "POST",
url: "some.php",
data: {id : menuId},
dataType: "json",
success: function(data){
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status + ' ' + thrownError);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment