Can be used to query for a specific zip code, defaults to country US.
$.ziptastic(48867, function(country, state, state_short, city, zip){
// Use the data...
})
Optionally include country code for non-US zip codes.
$.ziptastic("CA", 48867, function(country, state, state_short, city, zip){
// Use the data...
})
$('#zip')
.ziptastic()
.on('zipChange', function(event, country, state, state_short, city, zip) {
// Use the data...
});