Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // http://where.yahooapis.com/geocode?location=San+Francisco,+CA&flags=J
- // http://where.yahooapis.com/geocode?location=68118&flags=J
- */
- $.getJSON('http://where.yahooapis.com/geocode?location=San+Francisco,+CA&flags=J', function(data){
- var items = [];
- $.each(data, function(key, val) {
- items.push('<li id="' + key + '">' + val + '</li>');
- });
- $('<ul/>', {
- 'class': 'my-new-list',
- html: items.join('')
- }).appendTo('body');
- });
Add Comment
Please, Sign In to add comment