문제

I am having an error related to IE7-js while I do not have IE7-js in my website. I am banging my head around for hours and still did not get a clue about it. enter image description here

도움이 되었습니까?

해결책

You have iframes which load content from http://www.formstack.com/forms/?...

There's this code on those pages:

<!--[if lt IE 9]>
    <script src="https://ie7-js.googlecode.com/svn/version/2.1(beta4)/IE9.js"></script>
<![endif]-->

This is the script causing Permission denied error. The code tries to access top.window, which is not allowed when both pages are not in the same domain (if(/ie7_off/.test(top.location.search)||t<5.5||t>=h.compat).

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top