There are 3 errors in the for-loop in your feednews.load function (for
the 2nd feed).  I've made the necessary corrections here:

  for (var i = 0; i < result2.feed.entries.length; i++) {
    var entry2 = result2.feed.entries[i];
    var div2 = document.createElement("li");
    div2.appendChild(document.createTextNode(entry2.title));
    ul2.appendChild(div2);
  }

-- omr

-- 
You received this message because you are subscribed to the Google Groups 
"Google AJAX APIs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-ajax-search-api?hl=en.

Reply via email to