Skip to content

Instantly share code, notes, and snippets.

@daspecster
Created February 2, 2016 02:44
Show Gist options
  • Save daspecster/d98f02dd0de734adbae6 to your computer and use it in GitHub Desktop.
Save daspecster/d98f02dd0de734adbae6 to your computer and use it in GitHub Desktop.
Ziptastic jQuery example
$.ajax({
type: "GET",
beforeSend: function(request) {
request.setRequestHeader("x-key", "123examplekey456");
},
url: "//zip.getziptastic.com/v3/US/48867",
success: function(data) {
console.log(data[0].city);
console.log(data[0].state);
console.log(data)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment