Показать сообщение отдельно
  #2 (permalink)  
Старый 12.08.2010, 19:10
Отправить личное сообщение для Octane Посмотреть профиль Найти все сообщения от Octane  
Регистрация: 10.07.2008
Сообщений: 3,873

$(function () {
    $.getJSON(
        "http://www.ringcentral.com/api/index.php?cmd=getCountries&typeResponse=json",
        function (data) {
            var $test = $("#test");
            $.each(data.result, function(country) {
                $test.append("<option>" + country.name + "</option>"); 
            })
        }
    );
});
Ответить с цитированием