I am trying to write a command to parse some xml/rss and extract a few
elements from it, the feed I am look at is
http://www.quotesdaddy.com/feed/user/cewood
and I am specifically trying to extract the /channel/item/ title &
link elements.
Can someone give give me a hand, I have been bashing my head against
this for a bit now and just can't seem to get it working.
I was trying something like this...
execute: function() {
var getUrl = "http://www.quotesdaddy.com/feed/user/cewood";
jQuery.get(getUrl,null,function(data){
CmdUtils.log(jQuery(data).find("item").attr("title"));
});
}
Any assistance would be greatly appreciated.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"ubiquity-firefox" 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/ubiquity-firefox?hl=en
-~----------~----~----~----~------~----~------~--~---