Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8721971
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:18:36+00:00 2026-06-13T07:18:36+00:00

So I found an rss based newsreel slideshow that I really like. Is there

  • 0

So I found an rss based newsreel slideshow that I really like. Is there a way to put that same newsreel on my website so that it gets updated automatically by their server? I’ve found the <link> element in the head section that traces the newsreel back to the original rss. Does that have something to do with it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T07:18:37+00:00Added an answer on June 13, 2026 at 7:18 am

    OK, I understand. Personally, I got about it this way. Get the RSS feed, stick it into YQL Consol, get the JSONP URL then use jQuery to parse it like so:

    $.ajax({
        //YQL JSON URL
        url: "http://query.yahooapis.com/v1/public/yql?q=select%20title%2Cdescription%2Clink%20from%20rss%20where%20url%3D%22http%3A%2F%2Fwww.usgs.gov%2Frss%2Fnews_description.xml%22&format=json",
        dataType: 'jsonp',
        jsonp: 'callback',
        jsonpCallback: 'cbfunc',
        success: function(data) {
            //narrow down WHAT you want
            var results = data.query.results.item;
            //loop through results and then append each item to #listnews selector.                 
            $.each(results, function(index, data) {
                $("#listnews").append("<li><a href='" + results[index].link + "'>" + results[index].title + "</a></li>");
            });
        }
    });​
    

    Here is a jsfiddle working example: http://jsfiddle.net/Qpkpn/

    I have found this works in all current browsers also… plus IE8 (i was having an issue in IE8 until jQuery JSON parse saved the day)

    Add this to your body area:

    <ul id="loadnews"></ul>
    

    You will then need to add a scrolling function of some sort to it.

    I have seen a ticker called jTicker that might work for you also.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to put together a simple RSS reader, and found code on http://www.ibm.com/developerworks/opensource/library/x-android/
I've found several tutorials for making iphone apps that load data from an RSS
is there any objective c frameworks/code base that help you to develop a rss
I'm looking for a java rss lib, and I found rome . But there
When parsing the <description> tags found in several RSS feeds, I'm noticing that if
Would like to read RSS in VIM, but I haven't found a plugin out
I found this site that allows to convert RSS feeds into json. It also
I found some code for an rss reader. And I want to use it
I'm working on a rss parser in android (upgrading a parser I found on
I am looking for the XSD schema of RSS. Via Wikipedia I have found

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.