/ziptastic-jquery

The Official Ziptastic jQuery plugin

Primary LanguageHTML

ziptastic-jquery

Seamlessly integrate Ziptastic! with jQuery

Usage

Standalone Lookup

Can be used to query for a specific zip code.

$.ziptastic(48867, function(country, state, stateCode, city, zip) {
  // Match found.
});

Input Keyup Wrapper

$('input.zip')
  .ziptastic()
  .on('zipChange', function(event, country, state, stateCode, city, zip) {
    // Match found.
  });