Created
April 11, 2012 02:18
-
-
Save luk-/2356429 to your computer and use it in GitHub Desktop.
ziptastic
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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