Search code examples
google-chrome-frame

Chrome Frame: Access is denied error in IE9


I am attempting to use Chrome-Frame on a site I'm building. In IE8 and below, everything works fine... In IE9 I get this error:

SCRIPT5: Access is denied.
cf-dlpage.js, line78 character 209

No idea what to do!

here is the conditional that is triggering the behaviour:

<!--[if lte IE 9]>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
  <style>
        body {
            overflow-y:hidden;
        }
      .chromeFrameOverlayContent {
            border:none;
            overflow:hidden;            
        }
      .chromeFrameOverlayContent iframe {
            border:none;
            overflow:hidden;
        }
      .chromeFrameOverlayCloseBar {
            display:none;
        }
      .chromeFrameOverlayUnderlay {
            background-image:url(/img/bg.png);
            opacity: 1;
            filter: alpha(opacity = 100);
        }

  </style> 
  <script type="text/javascript">
    window.onload = function() {
        CFInstall.check({
            url: "/fix/update.html",
            mode: "overlay",
            destination: "/"
        });
    };
  </script> 
  <![endif]-->

Any help greatly appreciated!


Solution

  • Try this it sounds that its related to your problem. i hope it helps. read comment from [email protected], is the last comment right now.