Open In App

HTML DOM Script src Property

Last Updated : 21 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The DOM Script src Property is used to set or return the value of the src attribute of an <script> element. The src attribute specifies the URL of the External Javascript file. 

Syntax: 

  • It returns the src property:
scriptObject.src
  • It is used to set the src property:
scriptObject.src = URL

Property Values: It contains the value i.e. URL which specifies the URL of the External Javascript File. 

Two Types of URLs: 

  • An Absolute URL: It points to another website.
  • A relative URL: it points to a file within the website.

Return Value: It returns a string value that represents the URL of the External Javascript File. 

Example: This Example returns the src Property. 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM script src Property
    </title>
</head>
 
<body style="text-align:center;">
    <h1>
        GeeksForGeeks
    </h1>
 
    <h2>
        DOM script src property
    </h2>
 
    <script id="myGeeks"
            type="text/javascript"
            src="my_script.js">
    </script>
    <br>
    <button onclick="Geeks()">
          Submit
      </button>
    <h2 id="demo"></h2>
   
    <script>
        function Geeks() {
            let x = document.getElementById(
                "myGeeks").src;
            document.getElementById(
                "demo").innerHTML = x;
        }
    </script>
 
</body>
 
</html>


Output:

 

Supported Browsers: The browsers supported by HTML DOM Script src Property are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Apple Safari
  • Opera


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads