1

We have a page written in HTML5 running in BrowserMode:IE10 Compatibility View and DocumentMode IE10. Inside it we have a page we host which has to be run DocumentMode:IE8 or lower Otherwise the page will look bad. I can't touch the hosted page, and i need to run mine in IE10(must). Anyone has a different method of hosting the inner page other then IFRAME. any suggestions?

BlackM
  • 3,927
  • 8
  • 39
  • 69
ShukiB
  • 76
  • 1
  • 7

1 Answers1

0

Nope iFrame is the only way to do this. You could scale the iFrame to the size of its content using one of a few different libs on GitHub if that is the issue.

Doing this would require that they are either both on the same domain or that you inject a JS file into the iFramed app.

Both of these can be done via proxying the iFrame through the server that serves the parent page.

David Bradshaw
  • 11,859
  • 3
  • 41
  • 70