'defer' Syntax and Note : defer « HTML Attributes Reference « HTML CSS Reference






'defer' Syntax and Note

Note:
    
Determine whether the script in the <script> is executed while the page is 
loading or if it is deferred until after the page loads. 

This is a Boolean attribute.
Possible values are false and true.
Default value is false.
    
Syntax:
    
<script defer="value"> . . . </script>
    

      
      








Related examples in the same category

1.'defer' Example
2.defer is applied to