tags:

views:

20

answers:

1

Hi,

In my HTML page I have a iframe loading an external site. I want to access the properties inside the frame. I am getting a access denied error. How to resolve this?

Thanks in advance

A: 

You can't access data from external sites when you are working client side. This would be a security risk.

To work around, have your server grab the data from the remote site instead.

David Dorward