0

I'm trying to get the contents of an <iframe> from another page.

The other page is a different website; I'm logged into that website and I get its contents and store it in the <iframe>.

How do I get the contents of that <iframe> into the current window ?

Brock Adams
  • 90,639
  • 22
  • 233
  • 295
Sakthivel
  • 1,883
  • 12
  • 29
  • 41
  • double dupe http://stackoverflow.com/questions/540077 http://stackoverflow.com/questions/540189, please stop re-asking. – bobince Feb 12 '09 at 16:22

1 Answers1

3

The short answer: you can not do it. Browsers restrict the interaction between content from different websites using the same origin policy.

Grey Panther
  • 12,870
  • 6
  • 46
  • 64