README.mediawiki
September 25, 2011 · View on GitHub
'''jFeed: jQuery feed parser plugin'''
Copyright (C) 2007-2011 Jean-François Hovinne - http://hovinne.com/
Dual licensed under the MIT (MIT-license.txt) and GPL (GPL-license.txt) licenses.
== Usage ==
jQuery.getFeed(options);
'''Options:'''
url: the feed URL (required)data: data to be sent to the server. See [http://api.jquery.com/jQuery.ajax/jQuery.ajax] data propertysuccess: a function to be called if the request succeeds. The function gets passed one argument: theJFeedobject
'''Example:'''
jQuery.getFeed({
url: 'rss.xml',
success: function(feed) {
alert(feed.title);
}
});
== JFeed properties ==
feed.typefeed.versionfeed.titlefeed.linkfeed.descriptionfeed.languagefeed.updatedfeed.items:an array of JFeedItem
== JFeedItem properties ==
item.titleitem.linkitem.descriptionitem.updateditem.id
Please see the provided examples for more information.
A basic PHP proxy is also available (proxy.php), if you need to load external
feeds (for testing purposes only, do not use it on public websites).