Tower
Tower

Reputation: 102765

contentDocument.documentURI alternative to IE6 and IE7?

I need to grab the URI of an iframe after "load" event. I have used contentDocument.documentURI so far, but it does not work in IE6 and IE7. What are the alternatives?

Upvotes: 1

Views: 376

Answers (1)

Andy E
Andy E

Reputation: 344517

All browsers support contentWindow.location.href.

Upvotes: 5

Related Questions