An open API service indexing awesome lists of open source software.

https://github.com/thinkphp/moorss

This plugin MooTools provides a simple way to build an RSS Reader using PHP proxy.
https://github.com/thinkphp/moorss

Last synced: 3 months ago
JSON representation

This plugin MooTools provides a simple way to build an RSS Reader using PHP proxy.

Awesome Lists containing this project

README

          

MooRSS
======

This plugin provides a simple way to build an RSS Reader using server-side proxy.

![Screenshot](http://farm7.static.flickr.com/6024/6020758993_b5c109d19d_z.jpg)

How to use
----------

First you must to include the JS files in the head of your HTML document.

#HEAD

google.load("mootools", "1.3.2");


In your HTML/Body source:

#BODY

Ajaxian RSS



MooTools Blog RSS


In your JavaScript source:

#JS
(function($){
//when DOM is ready
window.addEvent('domready', function(){
$('ajaxian').rss('http://feeds.feedburner.com/ajaxian');
$('mootools').rss('http://feeds.feedburner.com/mootools-blog');
});
})(document.id);