Skip to content

Instantly share code, notes, and snippets.

@rileypaulsen
Created July 29, 2013 17:11
Show Gist options
  • Save rileypaulsen/6105886 to your computer and use it in GitHub Desktop.
Save rileypaulsen/6105886 to your computer and use it in GitHub Desktop.
check against the zippopotamus API
function checkZipCodeState(zip){
jQuery.ajax(
'http://api.zippopotam.us/us/'+zip,
{
success:function(data){
return data;
}
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment