Wednesday, June 8, 2011

How to detect iframe src / URL change event by javascript?

By onload event in iframe:

<iframe src="http://www.google.com/" onLoad="alert('Test');"></iframe>
<iframe src="/test.html" onLoad="alert(this.contentWindow.location);"></iframe>

No comments:

Post a Comment