Friday, July 24, 2026
HomeLanguagesJavascriptJavaScript Know the value of GET parameters from URL

JavaScript Know the value of GET parameters from URL

In order to know the parameters, those are passed by the “GET” method, like sometimes we pass the Email-id, Password, and other details. For that purpose, We are using the following snippet of code. 

Example-1: This example get the value of “a” parameter from the URL. 

html




<h1 style="color:green;">
    neveropen
</h1>
  
<button onclick="myGeeks()">
    Click here
</button>
  
<p id="GFG_down" style="color:green;">
</p>
  
<script>
    function myGeeks() {
        var GFG_url_string =
        var GFG_url = new URL(GFG_url_string);
        var c = GFG_url.searchParams.get("a");
        var p_down = document.getElementById("GFG_down");
        p_down.innerHTML = c;
    }
</script>


Output:

JavaScript Know the value of GET parameters from URL

JavaScript Know the value of GET parameters from URL

Example 2:This example get the value of all the parameters from the URL. 

html




<h1 style="color:green;">
    neveropen
</h1>
  
<button onclick="myGeeks()">
    Click here
</button>
  
<p id="GFG_down" style="color:green;">
</p>
  
<script>
    function myGeeks() {
        var GFG_url_string =
        var GFG_url = new URL(GFG_url_string);
        var a = GFG_url.searchParams.get("a");
        var b = GFG_url.searchParams.get("b");
        var c = GFG_url.searchParams.get("c");
        var p_down = document.getElementById("GFG_down");
        p_down.innerHTML = a + "<br>" + b + "<br>" + c;
    }
</script>


Output:

JavaScript Know the value of GET parameters from URL

JavaScript Know the value of GET parameters from URL

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

2 COMMENTS

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6902 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6971 POSTS0 COMMENTS