Permission denied in IE using window.open ()?
Are you running it from localhost
or file://
? If so, then this is indeed the default behavior. You can configure this somewhere in the browser settings forest. But if you are indeed using it from a real domain, then IE also emits this error in some cases when the url points to a different domain. Browser security settings seem to be too strict. To fix this, you need to adjust your browser settings accordingly.
However, this does not eliminate the risk that one of your customers using IE will get the same issue. If you insist on opening the xref in a new window, I would suggest using <a>
with instead target="_blank"
(although this attribute is deprecated in HTML, you can do it rel="ext"
and run some JS at load time to give the a[rel=ext]
target attribute).
a source to share