Skip to content

Instantly share code, notes, and snippets.

@brunocroh
Created November 10, 2017 15:38
Show Gist options
  • Save brunocroh/106b108b54f9c39f13c5c2046a1b6fbd to your computer and use it in GitHub Desktop.
Save brunocroh/106b108b54f9c39f13c5c2046a1b6fbd to your computer and use it in GitHub Desktop.
$.ajax({
url: "https://viacep.com.br/ws/79805030/json",
type: "GET",
crossDomain: true,
success: function (resp) {
console.log(resp);
},
error: function (xhr, status) {
alert("error");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment