Example Use of the defer attribute: <script type="text/javascript" defer="defer"> alert(document.getElem...
Example
Use of the defer attribute:<script type="text/javascript" defer="defer"> alert(document.getElementById("p1").firstChild.nodeValue); </script> |
Definition and Usage
The defer attribute specifies that the execution of a script should be deferred (delayed) until after the page has been loaded.Browser Support
The defer attribute is only supported by Internet Explorer.Syntax
<script defer="value"> |
Attribute Values
Value | Description |
---|---|
defer | Delays the execution of a script |