Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a site with an iFrame.

The host page has some very basic JS on it, the iframed page has simple JS too.

When I embed the iframe as usualy: <iframe src="iframeURL" width="900" height="1000"></iframe> it works fine in all browsers but IE8.

I tried various things:

  • first: disabling all JS
  • removing src attribute and adding it with JS
  • using <object> instead
  • I used proxy.php to make the content appear as if it were coming from the same domain

It doesn't work in IE8 regardless what I do.

The funny thing is that I can open the page I want to iframe in a separate tab and works just fine.

If I change the src attribute to "some_other_random_page_from_internet" it works.

The other thing is that both host and iframe use postMessage to communicate and I can see the communication is working OK, it's just the content which doesn't show, but when I inspect the page source with developers tools I can see the content is there.

Is it possible that the content of the iframe causes issues? It's a basic HTML + basic JS, with JS disabled it shouldn't be an issue.

Any ideas what else I could check?

PS. I can't show the code (NDA , etc)

share|improve this question
Can you see iFrame in other website ? w3schools.com/html/html_iframe.asp Try a W3C validator, another PC, another docType, to stop all software like skype, your firewall/antivirus/malware… – benoît Jun 25 '12 at 14:33
That's very good point. The iframed page doesn't validate (invalid doctype). As I can't change it at the moment (someone else is managing that content) I have to wait to see if it will solve the issue. – strah Jun 25 '12 at 14:52
It didn't solve the issue. I can see other websites in the iframe, but not that particular one. Tried different PC... – strah Jun 25 '12 at 15:02

1 Answer

up vote 1 down vote accepted

Found it.

The iframed content had the following css rule:

html{ position: relative; }

Removing it helped a lot.

share|improve this answer
Thanks, It helped me a lot! – Gaurang Jadia Jul 31 '12 at 19:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.