FeedEk Examples

Basic Example

Code
$('#divFeed').FeedEk({
  FeedUrl:'https://jquery-plugins.net/rss',
  MaxCount: 2
});

Description Character Limit Example

Code
$('#divFeed').FeedEk({
  FeedUrl:'https://jquery-plugins.net/rss',
  MaxCount: 3,
  ShowDesc: true,
  ShowPubDate: false,
  DescCharacterLimit: 100
});

No Description Example

Code
$('#divFeed').FeedEk({
FeedUrl:['https://www.espn.com/espn/rss/news', 
     'http://feeds.bbci.co.uk/news/rss.xml'],
 MaxCount: 4
});

Examples with date format

Code
$('#divFeed').FeedEk({
  FeedUrl:'https://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'd',
  DateFormatLang:'en'
});
Code
$('#divFeed').FeedEk({
  FeedUrl:'https://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'D',
  DateFormatLang:'fr-FR'
});
Code
$('#divFeed').FeedEk({
  FeedUrl:'https://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'MM-dd-yyyy hh:mm',
  DateFormatLang:'en'
});

Code
$('#divFeed').FeedEk({
  FeedUrl:'https://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'dd MMMM yyyy',
  DateFormatLang: 'en'
});

Home   Demo   Download   Github