Hey Andrea,
I have a basic howto in the Readme.txt, you should download the full package to see how it works with the demo I included!
PrettyPrint.js will dump the object to help you debug the feed; test.html will show you how the class is used with the RSS feeds in the link tags.
You can also pass the URL of your feed when you call the class, but it must be on the same domain or it will fail; my proxyCast on phpclasses.org is a solution to this problem.
example from the read me:
$('link[type="application/rss+xml"]').each(function() {
var link = $(this).attr('href');
var f = feedMe(link);
/** Do something with the object */
});
I hope this helps you out,
Karl |