# ziptastic-jquery **Repository Path**: mirrors_stephenplusplus/ziptastic-jquery ## Basic Information - **Project Name**: ziptastic-jquery - **Description**: The Official Ziptastic jQuery plugin - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-11-23 - **Last Updated**: 2026-03-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ziptastic-jquery > Seamlessly integrate [Ziptastic!](https://www.getziptastic.com) with jQuery ## Usage #### Standalone Lookup Can be used to query for a specific zip code. ```js $.ziptastic(48867, function(country, state, stateCode, city, zip) { // Match found. }); ``` #### Input Keyup Wrapper ```js $('input.zip') .ziptastic() .on('zipChange', function(event, country, state, stateCode, city, zip) { // Match found. }); ```