views:

9

answers:

1

Hi,

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?

+3  A: 

All browsers support contentWindow.location.href.

Andy E