Displaying RSS feed?

T

Trevor L.

Judgergm said:
How do I get an RSS feed from another site to display in Front Page
2003?

I found an RSS viewer that seems to work OK

I added this into my page
<a href="bbcnews.html" target="_self">
<img src="images/display/bbcnews.gif"
alt="" title="BBC News RSS" width="125" height="25" /></a>

If you don't have an image, this would read:
<a href="bbcnews.html" target="_self">
BBC News RSS</a>

I placed this in bbcnews.html
<script type="text/javascript"
src="http://rssxpress.ukoln.ac.uk/lite/v...co.uk/rss/newsonline_uk_edition/world/rss.xml">
</script>
<input type="button" value="Home"
onclick="location.href='index.html'" />

When you click the link, it opens the RSS feed in place of the old page
(because of target="_self"). This is why I added a "Home" button to return
to where I called it from.

To open a new page, use target="_blank". Closing this then displays the
already opened page (e.g. index.html).

You have to use Code or HTML view to insert this code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top