I have a 4 iframes on a page, and when each is loaded I have their src
set to ""
(empty). Clicking on different links in the page set's the src
's to different URL's using jQuery. This works fine in FF, Chrome, Safari, etc., but IE gives me:
"Permission Denied - jquery.js?1350498802, line 103 character 430
"
From what I've found this is because if a security feature IE to prevent XSS attacks. The problem is that the pages I'm loading in the iframes are in a different domain than the page they're being loaded into. I don't have access to the code in the domain that the iframes are getting their src
's from, so is there anyway that I can load those pages without getting this error?
I can post code if need be but there's nothing complicated about it, it's an empty iframe until a link is clicked, at which point the iframe's src
is changed using $("#iframe").attr("src", link);
.
Thanks in advance!