Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM Location Search Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Location Search property in HTML DOM is used to set or return the query part of URL including question mark. The query part is the part of URL after the question mark. 

Syntax:

  • It returns the location search property.
location.search
  • It is used to set the location search property.
location.search = searchString

Property Value: searchString which is used to specify the search part of URL. 

Return Value: It returns a string which represents the search value. 

Example: This example display the search part of URL. 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML DOM Location search Property
    </title>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
     
    <h2>
        HTML DOM Location search Property
    </h2>
     
    <button onclick="myGeeks()">Click Here!</button>
     
    <!-- script to return location search property -->
    <script>
        function myGeeks() {
            const url = document.createElement('a');
             
            url.setAttribute('href',
     
            window.alert("URL search value of current page: "
                    + url.search);
        }
    </script>
</body>
 
</html>                               

Output:

  

Supported Browsers: The browser supported by DOM Location search Property are listed below:

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 3
  • Firefox 1
  • Opera 12.1
  • Safari 1
My Personal Notes arrow_drop_up
Last Updated : 05 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials