Friday, October 17, 2025
HomeLanguagesJavascriptD3.js | d3.select() Function

D3.js | d3.select() Function

The d3.select() function in D3.js is used to select the first element that matches the specified selector string. If any element is not matched then it returns the empty selection. If multiple elements are matched with the selector then only the first matching element will be selected.

Syntax:

d3.select("element")

Parameters: This function accepts single parameter which holds the element name.

Return Value: This function returns the selected elements.

Below programs illustrate the d3.select() function in D3.js:

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <title>
        D3.js | d3.select() Function
    </title>
      
    <script src = "https://d3js.org/d3.v4.min.js"></script>
</head>
  
<body>
      
    <div>neveropen</div>
      
    <script>
      
        // Calling the select() function
        var a = d3.select("div").text();
          
        // Getting the selected element
        console.log(a);
    </script>
</body>
  
</html>                    


Output:

neveropen 

Example 2:




<!DOCTYPE html>
<html>
  
<head>
         
    <title>
        D3.js | d3.select() Function
    </title>
      
    <script src="https://d3js.org/d3.v4.min.js"></script>
</head>
   
<body>
    <p>neveropen</p>
         
    <p>A computer science portal for neveropen</p>
         
    <script>
         
        // Calling the select() function
        var a = d3.select("p").text();
            
        // Getting the selected element
        console.log(a);
    </script>
</body>
     
</html>


Output:

neveropen

Reference: https://devdocs.io/d3~5/d3-selection#select

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS