Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

how to show RSS in an iframe or div?

  • 2 uphendule
  • 1 inale nkinga
  • 88 views
  • Igcine ukuphendulwa ngu WaxyChicken

more options

I'm writing my own hard drive HTML for my homepage and need to disable the RSS XML Live Bookmarks prompt so that i can display the feed in an iFrame or DIV.

I do NOT need instructions about how to "view source" from the menu, only how to disable the Live Bookmarks subscription HTML prompt.

I'm writing my own hard drive HTML for my homepage and need to disable the RSS XML Live Bookmarks prompt so that i can display the feed in an iFrame or DIV. I do NOT need instructions about how to "view source" from the menu, only how to disable the Live Bookmarks subscription HTML prompt.

Isisombululo esikhethiwe

Still the easiest way that I can think of is to use the view-source protocol.

Maybe you can load that page code via an XMLHttpRequest.

A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.

The helpers at that forum are more knowledgeable about web development issues.
You need to register at the MozillaZine forum site in order to post at that forum.


<html><head><title>IFRAME</title></head><body>
<p id="p1">
<a href="#pHRF">http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml#</a>
</p>
<iframe id="f1" src="view-source:http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml#" height="95%" width="100%">
</iframe>
</body></html>

(I will lock previous thread about this subject)

Funda le mpendulo ngokuhambisana nalesi sihloko 👍 0

All Replies (2)

more options

Isisombululo Esikhethiwe

Still the easiest way that I can think of is to use the view-source protocol.

Maybe you can load that page code via an XMLHttpRequest.

A good place to ask advice about web development is at the MozillaZine "Web Development/Standards Evangelism" forum.

The helpers at that forum are more knowledgeable about web development issues.
You need to register at the MozillaZine forum site in order to post at that forum.


<html><head><title>IFRAME</title></head><body>
<p id="p1">
<a href="#pHRF">http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml#</a>
</p>
<iframe id="f1" src="view-source:http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml#" height="95%" width="100%">
</iframe>
</body></html>

(I will lock previous thread about this subject)

Okulungisiwe ngu cor-el

more options

Thanks Corel! you came through for me! :)