A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-script-defer-attribute/ below:

HTML <script> defer Attribute - GeeksforGeeks

HTML <script> defer Attribute

Last Updated : 27 Feb, 2024

The HTML defer attribute is a Boolean attribute that is used to specify that script is executed when the page has finished parsing. This attribute only works with external scripts. 

Syntax:

<script defer> 

Example: 

HTML
<!DOCTYPE html>
<html>

<head>
    <title>
        HTML <script> defer Attribute
    </title>
</head>

<body style="text-align:center;">
    <h1 style="color:green"> 
        GeeksForGeeks 
    </h1>

    <h2> 
        HTML <script> defer Attribute
    </h2>

    <script id="myGeeks"
            type="text/javascript"
            src="my_script.js"
            defer>
    </script>
    <br>
    <button type="button"
            onclick="myFunction()">
      Submit
  </button>

</body>

</html>

External script: my_script.js 

javascript
function myFunction() {
    alert("Script works");
}

Output: Before Click: 

After Click:

Supported Browsers: The browsers supported by <script> defer Attribute are listed below:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4