Open In App

HTML | DOM Location Search Property

Last Updated : 05 Jul, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads