Monday, September 23, 2024
Google search engine
HomeLanguagesJavascriptHow to get the title of an HTML page ?

How to get the title of an HTML page ?

In this article, we will see how to get the title of HTML page using JavaScript. There is a number of ways to do this but here we discuss a few of the most preferred methods. 

Example 1: This example gets the title of the document by using document.title property

html




<!DOCTYPE html>
<html lang="en">
 
<head>
    <title>
        neveropen Page Title
    </title>
</head>
 
<body style="text-align: center;">
    <h1 style="color:green;">
        neveropen
    </h1>
 
    <h3>
        Click on button to get the
        title of HTML document
    </h3>
     
    <button onClick="GFG_Fun()">
        Click Here
    </button>
     
    <p id="GFG2"></p>
     
    <script>
        let elm = document.getElementById('GFG2');
 
        function GFG_Fun() {
            elm.innerHTML = document.title;
        }
    </script>
</body>
 
</html>


Output:

 

Example 2: This example gets the title of document by selecting the title by tag name and then taking the element at index 0 using document.getElementsByTagName() method. 

html




<!DOCTYPE html>
<html lang="en">
 
<head>
    <title>
        neveropen Page Title
    </title>
</head>
 
<body style="text-align: center;">
    <h1 style="color:green;">
        neveropen
    </h1>
 
    <h3>
        Click on button to get the
        title of HTML document
    </h3>
     
    <button onClick="GFG_Fun()">
        Click Here
    </button>
     
    <p id="GFG"></p>
     
    <script>
        let elm = document.getElementById('GFG');
 
        function GFG_Fun() {
            let title = document
                .getElementsByTagName("title")[0];
 
            elm.innerHTML = title.innerHTML;
        }
    </script>
</body>
 
</html>


Output:

 

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments