You have iframe
s 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)
.
2
solved Why I am getting access denied error on IE8? [closed]