Latest

recent

HTML Script defer attribute

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

HTML Script defer attribute Reviewed by 1000sourcecodes on 21:00 Rating: 5
Powered by Blogger.