Skip to content

Instantly share code, notes, and snippets.

@daspecster
Created June 8, 2017 22:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daspecster/9b2cc1f4fc072e00cc91def6781a4933 to your computer and use it in GitHub Desktop.
Save daspecster/9b2cc1f4fc072e00cc91def6781a4933 to your computer and use it in GitHub Desktop.
Multiple form example
<script type="text/javascript">
(function($) {
$(function() {
// API key and country can go here.
var options = {
"key": "your-api-key-here",
"country": "US"
}
var duration = 500;
var elements = {
country: $('#country'),
state_short: $('#state'),
city: $('#city'),
zip: $('#zip')
}
// Initially hide the city/state/zip
elements.country.parent().hide();
elements.state_short.parent().hide();
elements.city.parent().hide();
elements.zip.ziptastic(options)
.on('zipChange', function(evt, country, state, state_short, city, zip) {
// Country
elements.country.val(country).parent().show(duration);
// State
elements.state.val(state).parent().show(duration);
// City
elements.city.val(city).parent().show(duration);
});
var mail_elements = {
country: $('#mcountry'),
state_short: $('#mstate'),
city: $('#mcity'),
zip: $('#mzip')
}
// Initially hide the city/state/zip
mail_elements.country.parent().hide();
mail_elements.state.parent().hide();
mail_elements.state_short.parent().hide();
mail_elements.city.parent().hide();
// Initialize the ziptastic and bind to the change of zip code
mail_elements.zip.ziptastic(options)
.on('zipChange', function(evt, country, state, state_short, city, zip) {
// Country
mail_elements.country.val(country).parent().show(duration);
// State
mail_elements.state_short.val(state_short).parent().show(duration);
// City
mail_elements.city.val(city).parent().show(duration);
});
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment