FeedEk Examples

Basic Example

Code
$('#divFeed').FeedEk({
    FeedUrl: 'https://wwwnc.cdc.gov/travel/rss/notices.xml',
    MaxCount: 6
});

Description Character Limit Example

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

Multiple Feed Url Example

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

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

FeedEk Plugin Page    Demo    Github