YAHOO.util.Connect.asyncRequest('GET', 'index.php?module=Connectors&action=CallConnectorFunc&source_id=ext_rest_dropboxpidgin&source_func=getLogs&yahoo_id='+dropboxpidginYahooIdValue, { success: function (o) { var data = YAHOO.lang.JSON.parse(o.responseText); Y_DBP.one("#dropboxpidgin_loading").hide(); dropboxpidginHoverActivated = false; //build out the popup list var html = ''; if(data.logs) { var logLength = data.logs.length; for(var i=0; i < logLength; i++) { //if(i % 50 == 0) {alert(data.logs[i].path);} html += '
  • '; html += 'Conversation:'+data.logs[i].path+'
    '; html += 'Size:'+data.logs[i].size+'
    '; html += ''; html += '
  • '; } } document.getElementById("dropboxpidgin_container").innerHTML = ''; document.getElementById("dropboxpidgin_list").innerHTML += html; }, failure: function(){ Y_DBP.one("#dropboxpidgin_loading").hide(); dropboxpidginHoverActivated = false; } });