Не понимаю почему не работает
Добавлено: 09 фев 2012, 20:14
Код: Выделить всё
window.onload = (function() { VK.init(function(){ /*alert("YES");*/ VK.loadParams(document.location.href); var viewer_id = VK.params.viewer_id; VK.api("friends.getAppUsers", function(data) { if (data.response) { var frends_id = data.response; VK.api("getProfiles", { uids: frends_id }, function(data1) { if (data1.response) { document.getElementById('record').innerHTML = data1.response[0].first_name;; } }); } }); });});