Skip to content

Instantly share code, notes, and snippets.

@gsf
Created June 20, 2011 21:02
Show Gist options
  • Save gsf/1036573 to your computer and use it in GitHub Desktop.
Save gsf/1036573 to your computer and use it in GitHub Desktop.
phlapi
// possible ideal for handling sanitation districts
var address = $('#addressInput').val();
phl.sanDis(address, 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