Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

iframe not display 1

Status
Not open for further replies.

derwent

Programmer
May 5, 2004
428
GB
We have an iframe that is not being picked up by firefox and Safari on a Mac.

(it is the news bit at the bottom)

I can`t figure out what is wrong. Using the same code on other websites we have displayed iframes no problem but this one is eluding me.

Can anyone help? thanks
 
right thanks, can I change it to make it work?
 
of course. instead of document.all, use document.getElementById and reference the id of the object you're looking for.

as for your second error, i'm not really even sure what you're trying to do with that line of code...

*cLFlaVA
----------------------------
[tt]your mom goes to college[/tt]
[URL unfurl="true"]http://www.coryarthus.com/[/url]
[banghead]
 
ok, this is a start - there are other places in your code where you'll have to make similar changes.

change this:
Code:
          if(!document.body.children.incoming.children.properties)
          {
             document.all.incoming.innerHTML = "<DIV ID=\"properties\"><DIV ID=\"itemcount\">1</DIV></DIV><DIV ID=\"stories\"><DIV ID=\"1\"><DIV ID=\"Summary\">More than bricks and mortar.</DIV><DIV ID=\"SiteLink\">[URL unfurl="true"]http://www.derwentliving.com/DIV><DIV[/URL] ID=\"UrlLink\"></DIV></DIV></DIV>";
          }

to this:

Code:
document.getElementById('incoming').innerHTML = "<DIV ID=\"properties\"><DIV ID=\"itemcount\">1</DIV></DIV><DIV ID=\"stories\"><DIV ID=\"1\"><DIV ID=\"Summary\">More than bricks and mortar.</DIV><DIV ID=\"SiteLink\">[URL unfurl="true"]http://www.derwentliving.com/DIV><DIV[/URL] ID=\"UrlLink\"></DIV></DIV></DIV>";

*cLFlaVA
----------------------------
[tt]your mom goes to college[/tt]
[URL unfurl="true"]http://www.coryarthus.com/[/url]
[banghead]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top