Skip to content

Latest commit

 

History

History
48 lines (31 loc) · 1.22 KB

README.md

File metadata and controls

48 lines (31 loc) · 1.22 KB

FeedEk jQuery RSS/ATOM Feed Plugin

FeedEk is an RSS/ATOM Feed Reader/Importer/Parser that is written with jQuery. You can obtain feeds easily from any domain.

Plugin Homepage

Demo

Usage

1- Include the Javascript resources into you pages

 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
 <script type="text/javascript" src="FeedEk.js"></script>

2- Add a placeholder for the widget to your page

<div id="divRss"></div>

3- Add the Javascript that will populate the placeholder

  $('#divRss').FeedEk({
    FeedUrl : 'http://rss.cnn.com/rss/edition.rss',
    MaxCount : 5,
    ShowDesc : true,
    ShowPubDate:true
  });

Options

  • FeedUrl Your Feed Url and it's required
  • MaxCount Feed Item Count. Default is 5
  • ShowDesc Option to show Feed Item Description. Default is true
  • ShowPubDate Option to show Feed Item Publish Date. Default is true

Demo

Plugin Homepage

Demo