Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Reading RSS with JQuery Re: Reading RSS with JQuery

#122616
rosspenman
Participant

You can do it with `$.parseXML()`.

Example:

$.ajax(“rss_url”, function(rss) {

xml = $.parseXML(rss);
$(xml).find(“item title”).each(function() {

$(“ul”).append($(“

  • “, {html: $(this).html()}));

    });
    });