FeedEk Examples

The Salsa Rapido Blog

Where I chart the progress of the Salsa Rapido method.
I've embedded a Blogger blog below. The links take you to mambalsa.blogspot.co.uk in a new window. Please feel free to comment :-)

content 1

Description Character Limit Example

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

No Description Example

Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 4,
  ShowDesc: false
});

Examples with date format

IMPORTANT : Moment.js is used for DateFormat options. You must include Moment.js for date format.
– If you want to localize date format (day name, month name) you must include Moment.js with langs instead.
– Please visit format examples and languages. for more information
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'L',
  DateFormatLang:'en'
});
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'L',
  DateFormatLang:'tr'
});
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'L',
  DateFormatLang:'en-gb'
});

Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'LL',
  DateFormatLang:'en'
});
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'LLL',
  DateFormatLang:'en'
});
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'll',
  DateFormatLang:'en'
});

Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'lll',
  DateFormatLang:'en'
});
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'DD MMMM YYYY',
  DateFormatLang: 'en'
});
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'MM/DD/YYYY'
});

Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'MM/DD/YYYY HH:mm'
});
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'MM-DD-YYYY'
});
Code
$('#divRss').FeedEk({
  FeedUrl: 'http://jquery-plugins.net/rss',
  MaxCount: 2,
  DateFormat: 'MM-DD-YYYY HH:mm'
});