
jQuery RssFeed Publish easily your favorite rss feeds on your website
jQuery RssFeed allows you to display all the rss feeds you want. it's very easy to use.Copy and paste the code on your website, put the url of the rss feed, choose the options and it works.
Under license MIT
Update :
New Release of jQuery rssFeed Beta 1.1New options :
- - Choose display speed
- - Choose the language (english or french, more soon)
- - Delete advertising pictures into the rss feed
Fixed Bug :
The description of each articles is displayed correctly
Downloading :
Download jQuery RssFeed beta 1.1- Download jQuery RssFeed beta 1.1
- Unzip all
- Upload the "rssFeed" directory to your website
Getting started :
Using jQuery RssFeed is very easy.First Step
In the first step you need to copy and paste the following code between <head> and </head> tags.
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript" src="rssFeed/rssFeed.js"></script>
<link href="rssFeed/rssFeed.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="rssFeed/rssFeed.js"></script>
<link href="rssFeed/rssFeed.css" rel="stylesheet" type="text/css">
Second Step
Insert the rssFeed <div> tag where you wish the feed to display.
<div id="rssFeed"></div>
Last Step
Add the following script between the <head> and </head> tag.Change "Url_of_your_feed" by the url of your feed.
<script type="text/javascript">
$(document).ready(function(){
jQuery.rssFeed('Url_of_your_feed');
});
</script>
$(document).ready(function(){
jQuery.rssFeed('Url_of_your_feed');
});
</script>
Choose Options
Lang :
default : en
Set the language of the article link (english or french available)
nextInterval :
default : 4000
set the display time of the article
In this exemple the language is set to "fr". jQuery rssFeed will display 'lire la suite' as article link and the display time to 5000 milliseconds
<script type="text/javascript">
$(document).ready(function(){
jQuery.rssFeed('Url_of_your_feed',({lang:"fr",nextInterval:5000}));
});
</script>
$(document).ready(function(){
jQuery.rssFeed('Url_of_your_feed',({lang:"fr",nextInterval:5000}));
});
</script>








