3 messages in com.googlegroups.google-desktop-developerRe: How I can get access to RSS of my...
FromSent OnAttachments
barm...@gmail.com05 Feb 2007 13:35 
Lahiru05 Feb 2007 22:22 
Lahiru05 Feb 2007 22:45 
Subject:Re: How I can get access to RSS of my picassaweb?
From:Lahiru (llah@gmail.com)
Date:02/05/2007 10:45:44 PM
List:com.googlegroups.google-desktop-developer

function processRegChange() { if (xmlRequest.readyState == 4){ if (xmlRequest.Status == 200){ // start reading RSS

//---------------------------------

var doc = new DOMDocument(); doc.loadXML(xmlRequest.responseText);

galleryList = doc.getElementsByTagName("item");

lbl.innerText = galleryList[0].getElementsByTagName("title") [0].firstChild.nodeValue;

//----------------------------------

} else { alert("There was a problem retrieving the XML data:\n" + xmlRequest.statusText); } }

}