Already have an account? Sign in.
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$.getJSON("http://api.openbeerdatabase.com/v1/breweries.json?callback=?", function(response) {
$(response.breweries).each(function() {
$("#example-breweries").append($("<li>", { text : this.name }));
});
});
</script>