Search notes:

DOM example: onload_in_body_tag

<!DOCTYPE html>
<html>
<head>
  <script type="text/javascript">
    "use strict";
  
    function Fired() {
       alert("see also on_load_window.html");
    }
    
   </script>
</head>
<body onload="Fired()">
  Compare to <a href='onload_as_window_property.html'>window.onload=func</a>.
</body>
</html>
Github repository about-Document-Object-Model, path: /Events/onload_in_body_tag.html

See also

DOM examples

Index