-
-
Save mdb/1037772 to your computer and use it in GitHub Desktop.
phlapi
This file contains 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
// possible ideal for handling sanitation districts | |
var address = $('#addressInput').val(); | |
phl(address, 'http://some.api.url' function(districts) { | |
$.each(districts, function(index, value) { | |
$('ul').append('<li>'+value+'</li>'); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment