File: README.md

Recommend this page to a friend!
  Classes of Karl Holz   feedMe   README.md   Download  
File: README.md
Role: Documentation
Content type: text/markdown
Description: Documentation
Class: feedMe
Retrieve and parse a RSS feed
Author: By
Last change: Update of README.md
Date: 2 years ago
Size: 1,577 bytes
 

Contents

Class file image Download

FeedMe 2.0 - jQuery RSS 2.0 + ATOM/iTunes parser

feedMe is a basic RSS feed and Podcast parser with XML namespace support for your Javascript and jQuery web apps.

I have removed both the JSON and Base64 outputs and removed the dependancy on the files Base64.js and JSON.js.

I have done some repairs to the code and tested it with jQuery 3.1.0, I have also removed the properties that are left empty or undefined so that the object is smaller and has less wasted space.

Check it out in the prettyprint output to see what is read from your feeds/podcasts

You can view the feed with Bootstrap using the text.html.

test-1.0.html is my first version.

I am thinking of adding an html5 playback support later on.

Reference

This class returns a normal Javascript object

Display Example with my jQuery Plugin, feedRead:

    jQuery(function ($) {
        var feeds = [];

        $.feedRead({
            itunes: true, //podcast url
            debug: true,
            feed_list:  '#podcast',
            feed: '#playlist',
            channel:  '#chan_info',
            item: '#play_info'
        });

test-1.0.html

This page has an example of printing the returned javascript object with prettyprint