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.
- Host: GitHub
- URL: https://github.com/thinkphp/moorss
- Owner: thinkphp
- Created: 2011-08-08T06:49:34.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-08-08T08:33:18.000Z (over 14 years ago)
- Last Synced: 2024-04-14T14:54:28.439Z (almost 2 years ago)
- Language: PHP
- Homepage: http://thinkphp.ro/apps/js-hacks/MooRSS/v1/rss.html
- Size: 102 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MooRSS
======
This plugin provides a simple way to build an RSS Reader using server-side proxy.

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);