Skip to content

Instantly share code, notes, and snippets.

@luk-
Created April 11, 2012 02:18
Show Gist options
  • Save luk-/2356429 to your computer and use it in GitHub Desktop.
Save luk-/2356429 to your computer and use it in GitHub Desktop.
ziptastic
<script type="text/javascript">
var client = new XMLHttpRequest();
client.open("GET", "http://zip.elevenbasetwo.com?zip=48867", true);
client.onreadystatechange = function () {
if(client.readyState == 4) {
alert(client.responseText);
};
};
client.send();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment