find city name with zipcode
unknown
javascript
4 years ago
1.0 kB
92
Indexable
<script>
function is_int(value) {
if ((parseFloat(value) == parseInt(value)) && !isNaN(value)) {
return true;
} else {
return false;
}
}
$(".fancy-form div > div").hide();
$("#zip").keyup(function() {
// Cache
var el = $(this);
// Did they type five integers?
if ((el.val().length == 4) && (is_int(el.val()))) {
// Call Ziptastic for information
$.ajax({
url: "https://zip.getziptastic.com/v2/DK/" + el.val(),
cache: false,
dataType: "json",
type: "GET",
success: function(result, success) {
$(".zip-error, .instructions").slideUp(200);
$("#city").val(result.city);
$("#state").val(result.state);
$(".fancy-form div > div").slideDown();
$("#zip").blur();
$("#address-line-1").show().focus();
},
error: function(result, success) {
$(".zip-error").slideDown(300);
}
});
} else if (el.val().length < 5) {
$(".zip-error").slideUp(200);
};
});
</script> Editor is loading...