<iframe onload="myFunction()"> - Javascript DOM Event

Javascript examples for DOM Event:onload

Description

The onload event occurs when an object has been loaded.

Summary

Bubbles No
Cancelable No
Supported HTML tags: <body>, <frame>, <iframe>, <img>, <input type="image">, <link>, <script>, <style>

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<iframe onload="myFunction()" src="http://java2s.com"></iframe>

<p id="demo"></p>

<script>
function myFunction() {//from w w  w  .j av  a  2s . co  m
    document.getElementById("demo").innerHTML = "Iframe is loaded.";
}
</script>

</body>
</html>

Related Tutorials