Index of /homepage/jfeed

[ICO]NameLast modifiedSizeDescription

[DIR]Parent Directory  -
[TXT]GPL-license.txt14-Sep-2009 11:10 15K
[TXT]GPL-license.txt.LCK14-Jul-2009 13:05 41
[TXT]MIT-license.txt14-Sep-2009 11:10 1.1K
[TXT]MIT-license.txt.LCK14-Jul-2009 13:05 41
[TXT]Makefile14-Sep-2009 11:10 789
[   ]Makefile.LCK14-Jul-2009 13:05 41
[DIR]build/14-Jul-2009 13:05 -
[TXT]example-proxy.html14-Sep-2009 12:14 1.7K
[TXT]example-proxy.html.LCK14-Jul-2009 13:05 41
[TXT]example.html14-Sep-2009 11:17 1.7K
[TXT]example.html.LCK14-Jul-2009 13:05 41
[DIR]jquery/14-Jul-2009 13:05 -
[   ]proxy.php14-Sep-2009 12:13 226
[   ]proxy.php.LCK14-Jul-2009 13:05 41
[DIR]src/14-Jul-2009 13:05 -
[TXT]test-dist-packed.html14-Sep-2009 11:10 1.9K
[TXT]test-dist-packed.html.LCK14-Jul-2009 13:05 41
[TXT]test-dist.html14-Sep-2009 11:10 1.9K
[TXT]test-dist.html.LCK14-Jul-2009 13:05 41
[TXT]test-src.html14-Sep-2009 11:10 2.2K
[TXT]test-src.html.LCK14-Jul-2009 13:05 41
[DIR]xml/14-Jul-2009 13:05 -

jFeed : jQuery feed parser plugin
Copyright (C) 2007 Jean-François Hovinne - http://www.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 jQuery.ajax data property.
    * success: a function to be called if the request succeeds.
      The function gets passed one argument: the JFeed object.
    
    Example:
    
    jQuery.getFeed({
        url: 'rss.xml',
        success: function(feed) {
            alert(feed.title);
        }
    });
    
JFeed properties
================

    * feed.type
    * feed.version
    * feed.title
    * feed.link
    * feed.description
    * feed.language
    * feed.updated
    * feed.items: an array of JFeedItem
    
JFeedItem properties
====================

    * item.title
    * item.link
    * item.description
    * item.updated
    * item.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).