472,331 Members | 1,402 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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

DOM - get element in Iframe from parent document

I am trying to access a table in an iframe via javascript. It sounds
easy - but it wonīt work...

The iframe is added to the document via someContainerElement.innerHTML
= "<iframe...>", it has name and ID and its visible in my DOM explorer
just as the table I need is it. The table is added from ASP.NET via
Response.Write().

I have tried both window.frames[], document.getElementById and even
document.getElementsByTagName, nothing has worked when the iframe is
involved...

It seems I cannot get af reference to the table in the iframe from the
parent document... ??

May 1 '06 #1
8 52644
Henrik Stidsen said the following on 5/1/2006 8:22 AM:
I am trying to access a table in an iframe via javascript. It sounds
easy - but it wonīt work...
And as they say "Then you must not be doing something right" :)
The iframe is added to the document via someContainerElement.innerHTML
= "<iframe...>", it has name and ID and its visible in my DOM explorer
just as the table I need is it. The table is added from ASP.NET via
Response.Write().
It's irrelevant that it is added in ASP.NET, but, if you have ASP.NET
then why are you adding it to the document using client side scripting?
Just insert it with ASP.
I have tried both window.frames[], document.getElementById and even
document.getElementsByTagName, nothing has worked when the iframe is
involved...
It takes a combination :)
It seems I cannot get af reference to the table in the iframe from the
parent document... ??


window.frames['IFrameName'].document.getElementById('TableID');

If that doesn't work, post a URL to a sample page that shows the behavior.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
May 1 '06 #2
>> I am trying to access a table in an iframe via javascript. It sounds
easy - but it wonīt work...
And as they say "Then you must not be doing something right" :)
And yet, it works when the table is added directly to the parent
document and not in the iframe - so something must be right somewhere
:)
It's irrelevant that it is added in ASP.NET, but, if you have ASP.NET
then why are you adding it to the document using client side scripting?
Just insert it with ASP.
Its an old script being updated for a new world - I wish I could, but I
canīt (as in, it takes too much work...)
I have tried both window.frames[], document.getElementById and even
document.getElementsByTagName, nothing has worked when the iframe is
involved... It takes a combination :)
Been there, done that - didnīt work either :(
It seems I cannot get af reference to the table in the iframe from the
parent document... ??

window.frames['IFrameName'].document.getElementById('TableID');
No luck...
If that doesn't work, post a URL to a sample page that shows the behavior.


Unfortunately not possible at the moment...

I have a feeling that this ends with a lot of recoding...

May 1 '06 #3
Henrik Stidsen said the following on 5/1/2006 8:41 AM:
I am trying to access a table in an iframe via javascript. It sounds
easy - but it wonīt work...
And as they say "Then you must not be doing something right" :)
And yet, it works when the table is added directly to the parent
document and not in the iframe - so something must be right somewhere
:)


Well, something is still wrong and it is something else in your code
causing the problems.
It's irrelevant that it is added in ASP.NET, but, if you have ASP.NET
then why are you adding it to the document using client side scripting?
Just insert it with ASP.


Its an old script being updated for a new world - I wish I could, but I
canīt (as in, it takes too much work...)


I am not sure I buy into that one, but, ok.
I have tried both window.frames[], document.getElementById and even
document.getElementsByTagName, nothing has worked when the iframe is
involved...
It takes a combination :)


Been there, done that - didnīt work either :(
It seems I cannot get af reference to the table in the iframe from the
parent document... ??
window.frames['IFrameName'].document.getElementById('TableID');


No luck...


Then something else in your code is breaking it.
If that doesn't work, post a URL to a sample page that shows the behavior.


Unfortunately not possible at the moment...


Why? Just a sample page. Or, sample code here.
I have a feeling that this ends with a lot of recoding...


It will, eventually, lead to recoding. It is not a matter of if, but when.
This script block:

<script type="text/javascript">
function newScriptElement(){
alert(window.frames['myIframe'].document.getElementById('myTable').innerHTML);
}
function addIFrame(){
document.getElementById('someContainer').innerHTML =
'<iframe src="blank2.html" name="myIframe"></iframe>';
}
</script>

With this HTML:

<button onclick="addIFrame()">Add IFrame</button>
<button onclick="newScriptElement()">Get Table</button>
<div id="someContainer"></div>

I added the IFrame using innerHTML and then got the table innerHTML from
blank2.html:

<table id="myTable">
<tbody>
<tr>
<td>My Table</td>
</tr>
</tbody>
</table>

That leads to the thought that something else in your page is screwing
it up.
--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
May 1 '06 #4
>That leads to the thought that something else in your page is screwing
it up.


That seems to be the problem :(

I have tried to call a function from the page in the iframe with the
table object as argument and it stille doesnīt work...
doStuffToTable(document.getElementById('tablething y');

In a .js file "attached" to the parent page:
function doStuffToTable(t)
{
alert(t.id);
}

That much works just fine...

Then I call a function in the old code that writes to the table, adds
rows and cells, but the table is still empty...
I quess its something in the old code that can't handle DOM working
with the iframe = even more "research" in old confusing code, less
actual work...

May 1 '06 #5
Henrik Stidsen said the following on 5/1/2006 9:31 AM:
That leads to the thought that something else in your page is screwing
it up.


That seems to be the problem :(

I have tried to call a function from the page in the iframe with the
table object as argument and it stille doesnīt work...
doStuffToTable(document.getElementById('tablething y');

In a .js file "attached" to the parent page:
function doStuffToTable(t)
{
alert(t.id);
}

That much works just fine...

Then I call a function in the old code that writes to the table, adds
rows and cells, but the table is still empty...


How does it add rows and cells? innerHTML or appendChild? innerHTML
doesn't work real well with IE and in IE you have to appendChild to the
TBODY instead of the Table element. Or, you could use insertRow and
insertCell. But insertRow, in IE, is downright crazy:

<URL:
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/insertrow.asp>

Yuck!

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
May 1 '06 #6
It uses insertRow and insertCell to build the table...

Since yesterday I have found out more about the problem.

The page in the iframe calls a function on the parent page. Argument is
an object, document.getElementById('myTable'), which works fine. From
the parent function I am able to alert the id of the object. So far so
good.
Next step is to change som properties on the table and delete some rows
(actually, changing their ID and setting visibillity to none). After
this, I cannot get myTable via document.getElementById so I try this as
a backup:

var tmpTbl = document.getElementById('listmultitable');
if(tmpTbl == null)
{
var iframes = document.getElementsByTagName('iframe');
var tables;
for(i = 0; i < iframes.length; i++)
{
tables =
iframes[i].document.getElementsByTagName('table');
for(j = 0; j < tables.length; j++)
{
if(tables[j].id == 'listmultitable'){newTbl =
tables[j]; j = tables.lenght; i = iframes.length;}
}
}
}

And well, tmpTbl is still null after this :/

I use the same function at another place in the app where its not in an
iframe and there is no problems at all there :(

May 2 '06 #7
"Henrik Stidsen" <he***********@gmail.com> skrev i melding
news:11**********************@e56g2000cwe.googlegr oups.com...
It uses insertRow and insertCell to build the table...

Since yesterday I have found out more about the problem.

The page in the iframe calls a function on the parent page. Argument is
an object, document.getElementById('myTable'), which works fine. From
the parent function I am able to alert the id of the object. So far so
good.
Next step is to change som properties on the table and delete some rows
(actually, changing their ID and setting visibillity to none). After
this, I cannot get myTable via document.getElementById so I try this as
a backup:

var tmpTbl = document.getElementById('listmultitable');
if(tmpTbl == null)
{
var iframes = document.getElementsByTagName('iframe');
var tables;
for(i = 0; i < iframes.length; i++)
{
tables =
iframes[i].document.getElementsByTagName('table');
for(j = 0; j < tables.length; j++)
{
if(tables[j].id == 'listmultitable'){newTbl =
tables[j]; j = tables.lenght; i = iframes.length;}
}
}
}

And well, tmpTbl is still null after this :/

I use the same function at another place in the app where its not in an
iframe and there is no problems at all there :(


Your *backup* method sets 'newTbl', NOT 'tmpTbl'...

Could that be your problem?

--
Dag.
May 2 '06 #8

Dag Sunde wrote:
Your *backup* method sets 'newTbl', NOT 'tmpTbl'... Could that be your problem?


It could have been the problem - but now i've changed it to:
if(tmpTbl == null){ tbl = ntbl; } else { tbl = null; }

tbl being a "global" variable, ntbl being the object passed as argument
to this function. It gets me about 5 centimeters further in the
script...

It seems to me that the problem is that the table is not added to the
DOM tree or the DOM tree that the javascript uses is not updated when I
change the id of the table in the iframe. Could that maybe be the
problem ?
I use the developer toolbar for IE and the DOM tree that it has is
updated correctly.

May 2 '06 #9

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

Similar topics

1
by: Winfried Koenig | last post by:
Hi everyone, I have a main page: -------------------------------------------------- <html><head><title>Test</title> </head><body> <img...
2
by: gsb | last post by:
I have an HTML page loaded into an iFrame contained in a DIV tag. From the loaded document how would I reference the DIV object? Thanks, gsb
5
by: Dominic | last post by:
Hi everybody, My goal is to set the height of the iframe to fit its content. There was an earlier posting which gave some useful insights. ...
26
by: Dave Hammond | last post by:
In document "A.html" I have defined a function and within the document body have included an IFRAME element who's source is document "B.html". In...
0
by: TR | last post by:
I have two aspx pages. Both pages have the same DOCTYPE: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> On one, there's an...
1
by: gslim | last post by:
I am trying to implement the busybox sample from // From Mark Wagner // http://blogs.crsw.com/mark/articles/642.aspx When I get to this line I...
2
by: Steven | last post by:
I have a page(pg1) which contains a select list (list1) in a form(form1) and an iframe(frame1), in this iframe is a page(pg2) with another select...
1
by: Roy | last post by:
Hi, I have a parent document which has an iframe loaded in it. The iframe has an textfield element. I want to access this textfield element from...
22
by: thekingsnake | last post by:
After following the instructions from the answer below: ...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...

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.