Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

how to show RSS in an iframe or div?

  • 2 risposte
  • 1 ha questo problema
  • 88 visualizzazioni
  • Ultima risposta di 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.

Soluzione scelta

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)

Leggere questa risposta nel contesto 👍 0

Tutte le risposte (2)

more options

Soluzione scelta

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)

Modificato da cor-el il

more options

Thanks Corel! you came through for me! :)