views:

14

answers:

0

Are there any events that I can listen to on an iframe on a different domain? For example, have this page on domain1:

<html>
<body>
  <iframe src="domain2.com"></iframe>
</body>
</html>

What events can I listen to with regard to the contentWindow of the iframe?

Thanks!