Hey everyone. Im creating a site and im trying to add a second RSS feed, even a third or forth if i can figure out how to do the second one first. The code bellow is in my index.html templeate. Its based off of Feedget. Im not sure how to add a second feed bellow the first one. Lets say the first feed is News, links to news articles, second is Technology, links to tech articles.

Is it something in the JS, or the HTML?

    <div data-role="page" data-theme="c" id="feedget">
        <span style="font-size:20px; font-weight:700;">site name:</span>
        <br /><br />
        <div class="feedget" style="overflow:hidden;" data-role="content"></div>
    </div>

<body>
    <script type="text/javascript">  
        $(function() {
            $('.feedget').feedget(
                { 
                    feed: 'http://www.site.com/rss/',
                    loadingImg: './images/loading.gif',
                    facebook: false,
                    twitter: false,
                    images: true,
                    fulltext: true,
                    entries: 5
                });
        });     

</script>        

Figured out what i wanted to, sorry for the wasted space

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.