473,394 Members | 1,828 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Problems getting same-domain IFRAME content in FireFox

Hi folks

I've googled for an answer to this, with no success. Can someone please
jump in, and put me out of my misery! (I'm sure it's quite simple)

I have an invisible IFRAME, and a visible DIV:

<IFRAME id=myframe style="display:none" src="..."
onload="ShowNews(this)"></IFRAME>

<DIV id=mydiv></DIV>

I need to copy the content from the IFRAME, into the DIV. Everything
comes from the same domain, so there are definitely not any
cross-domain security issues.

This works fine in IE6:

function ShowNews(x) {
document.all.mydiv.innerHTML =
x.contentWindow.document.body.outerHTML
}

but in Firefox 1.5 it fails with the error,
"x.contentWindow.document.body has no properties".

I've tried various changes, with no success.

How can I recode that statement, so it works in either browser?

TIA,
TC (MVP MSAccess)
http://tc2.atspace.com

Mar 20 '06 #1
9 11128
TC
PS. The source of the IFRAME is an RSS XML file. The XML file specifies
an XLS stylesheet. The XSL stylesheet transforms the XML into HTML. At
present, the HTML (produced by that transformation) starts with <BODY>,
and ends with </BODY>.

TC

Mar 20 '06 #2
aa**********@yahoo.com wrote:
Hi folks

I've googled for an answer to this, with no success. Can someone please
jump in, and put me out of my misery! (I'm sure it's quite simple)

I have an invisible IFRAME, and a visible DIV:

<IFRAME id=myframe style="display:none" src="..."
onload="ShowNews(this)"></IFRAME>

<DIV id=mydiv></DIV>

I need to copy the content from the IFRAME, into the DIV. Everything
comes from the same domain, so there are definitely not any
cross-domain security issues.

This works fine in IE6:

function ShowNews(x) {
document.all.mydiv.innerHTML =
x.contentWindow.document.body.outerHTML
}

but in Firefox 1.5 it fails with the error,
"x.contentWindow.document.body has no properties".

I've tried various changes, with no success.

How can I recode that statement, so it works in either browser?

TIA,
TC (MVP MSAccess)
http://tc2.atspace.com


I don't know if this helps, but I've done something like this:

I've put a div tag inside the IFrame document and a small javascript
snippet at the end that takes the innerHTML from the div and sends it
to the parent window.

"index.html":
<html>
<head>
<script language="javascript" type="text/javascript">
<!--
var global_variable_1 = "<p>No page found</p>";
function make_global(variable_a)
{
global_variable_1 = variable_a;
}
function present_site()
{
document.getElementById("where_to_put_loaded_page" ).innerHTML =
global_variable_1;
}
//-->
</script>
</head>
<body onload="present_site()">
[...]
<div id="where_to_put_loaded_page">
Initial text here is: no page loaded.
</div>
<iframe style="visibility: hidden" src="page1.html"></iframe>
</body>
</html>

"page1.html" (loaded page):
<html>
<body>
[...]
<div id="meaningful_content">
Here I put the content that I want dynamically loaded in the main page.
</div>
[...]
<script language="javascript" type="text/javascript">
<!--

this.parent.make_global(document.getElementById("m eaningful_content").innerHTML);

//-->
</script>
</body>
</html>

So basically I send the content from the IFrame to the main page via a
global variable and take/replace it via innerHTML. The only problem
with this is
that the iframe css doesn't get "shipped" to the main page. I've
temporarily solved that
by inlining the css, but if you find a better way, please tell me.

Mar 20 '06 #3
TC
Thanks for the suggestion. But in my case, the IFRAME content can't be
modified in the way you propose.

/Surely/ there's some way to get the content of an IFRAME, that will
work in Firefox?

This is the first time I've used Firefox, instead of IE. But at
present, IE works & Firefox doesn't. Grrrrrr #^%$%#$ :-(((

TC (MVP MSAccess)
http://tc2.atspace.com

Mar 20 '06 #4

aa**********@yahoo.com wrote:
Hi folks

I've googled for an answer to this, with no success. Can someone please
jump in, and put me out of my misery! (I'm sure it's quite simple)

I have an invisible IFRAME, and a visible DIV:

<IFRAME id=myframe style="display:none" src="..."
onload="ShowNews(this)"></IFRAME>

<DIV id=mydiv></DIV>

I need to copy the content from the IFRAME, into the DIV. Everything
comes from the same domain, so there are definitely not any
cross-domain security issues.

This works fine in IE6:

function ShowNews(x) {
document.all.mydiv.innerHTML =
x.contentWindow.document.body.outerHTML
}

but in Firefox 1.5 it fails with the error,
"x.contentWindow.document.body has no properties".

I've tried various changes, with no success.


You could try Googling: contentWindow +mozilla

To reference a div's content use:
document.getElementById('mydiv').innerHTML

You can reference the content of the document in an iframe via its
/name/, using:

window.frames[x].document.body.innerHTML

Mozilla doesn't appear to support outerHTML

It seems that contentWindow is available only as a property of the
value returned by document.getElementById, so to reference the iframe
by ID, try:

document.getElementById('mydiv').innerHTML =
document.getElementById(x).contentWindow.document. body.innerHTML;

or to amend your onload statement:

onload="ShowNews(this.id)"

--
S.C.

Mar 20 '06 #5
aa**********@yahoo.com wrote:
<IFRAME id=myframe style="display:none" src="..."
onload="ShowNews(this)"></IFRAME>

<DIV id=mydiv></DIV>

I need to copy the content from the IFRAME, into the DIV. Everything
comes from the same domain, so there are definitely not any
cross-domain security issues.

This works fine in IE6:

function ShowNews(x) {
document.all.mydiv.innerHTML =
x.contentWindow.document.body.outerHTML
}


Welcome to the wonderful world of two ways to do the same thing.
Now in your case, there are three differences!
FF does not have .all, .contentWindow, nor .outerHTML
but a div shouldn't be getting a <body> element, so perhaps try:

function ShowNews(x) {
document.getElementById('mydiv').innerHTML =
(x.contentDocument || x.contentWindow.document).body.innerHTML; }

where x is the IFRAME element (document.getElementById('myFrame');

Csaba Gabor from Vienna

Mar 20 '06 #6
TC
Thanks Stephen, I will try your suggestions & post back here in due
course.

TC (MVP MSAccess)
http://tc2.atspace.com

Mar 21 '06 #7
TC
Thanks Csaba, I will try your suggestions & post back here in due
course.

TC (MVP MSAccess)
http://tc2.atspace.com

Mar 21 '06 #8
TC
Geez, how hard could this friggin' be? !!

This is how I eventually managed to copy the content of an invisible
IFRAME, into a visible DIV, so it works in IE6 *and* FireFox 1.5.

Everything comes from the same domain, so there are no security issues.
This is the only solution that worked for me. All the others got
various errors in one or both browsers.
the DIV:

<DIV ID=mydiv>
</DIV>

the IFRAME:

<IFRAME ID=myframe SRC=... STYLE="display:none">
</IFRAME>

the code:

var x = document.getElementById('myframe');
document.getElementById('mydiv').innerHTML =
(x.contentDocument ||
x.contentWindow.document).documentElement.innerHTM L;
Thanks to all who tried to help. I hope that this helps someone else!

TC (MVP MSAccess)
http://tc2.atspace.com

Mar 24 '06 #9
Cheers TC, that helped me!

I've googled around for this solution and read too many responses from
people 'guessing' that document.getElementById("myIframe").innerHTML
would work.

*** Sent via Developersdex http://www.developersdex.com ***
Jun 6 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: leke | last post by:
Hi, I am trying to learn PHP but am having some problems getting my code running in Explorer 6. <html> <head> <title>PHP Test</title> </head> <body> <?php echo '<p>Hello World</p>'; ?>...
4
by: Mxsmanic | last post by:
The require() I'm using in a PHP script has stopped working after I moved from PHP4 and Apache 1.3.x to PHP5 and Apache 2.x. Now I get messages like this: Warning:...
2
by: Michael Hatmaker | last post by:
I have begun experimenting with web services, and I created some simple web services in C# and was able to install them with IIS and create an equally simple C# client to consume them. My next...
6
by: Affan Syed | last post by:
Hi, I am getting this weird problem. I know what i am doing is strange.. i am using C++ vectors and fopen, but for some reason if i used ofstream in the similar scenario it would give me errors....
36
by: Chuck Faranda | last post by:
I'm trying to debug my first C program (firmware for PIC MCU). The problem is getting serial data back from my device. My get commands have to be sent twice for the PIC to respond properly with...
4
by: chris | last post by:
Hello all, I am having problems getting Apache 2.2.4 to read the php_mysqli.dll file some my C:\php\ext\ directory. The following is the error that Apache displays in the error log: PHP...
2
by: rustyc | last post by:
Well, here's my first post in this forum (other than saying 'HI' over in the hi forum ;-) As I said over there: ... for a little side project at home, I'm writing a ham radio web site in...
0
by: Yansky | last post by:
Hi, I'm having a lot of problems getting any Python scripts to run on my website. I have put them in the cgi-bin directory and chmodded both the directory and files to 755. But when I try to access...
5
by: bodhiSoma | last post by:
Hi all. Can't seem to get PHP to play nice with MySQL. First I logged into MySQL, created the db, switched to it and then granted (what I thought were) correct privileges: -------- ...
4
by: lafayettejohnson | last post by:
there are 3 files but the one iam having problems with is the student.cpp student.cpp #include <iostream> // for ostream << and istream >> #include <string> #include "student.h"...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.