views:

216

answers:

2

Hi Guys,

I have a site on A.com and an iframe on B.com which calls javascript from A.com. This works great in FF. In IE7 / 8 I am getting a

Message: Access is denied.

message. I have checked the HTTP Traffic via Fiddler - and I can see that it isn't blocked in Fiddler ?

Any ideas what could be causing this and how to solve?

+1  A: 

An embedded iframe cant, ever acces the parent frame. An example of exacly how this works would be welcome.

mhughes
hi thx - so does this mean i cant call a script at all or ?
Tom
Nope. You cannot do what you want to do.
jeffamaphone
A: 

If both the pages are under your control (i.e. they belong to you and you cn alter the code), try this -

http://www.tomhoppe.com/index.php/2008/03/cross-sub-domain-javascript-ajax-iframe-etc/

Set document.domain like this:

<script type="text/javascript">
document.domain = 'tomhoppe.com';
</script> 
Hemant Tank