Answers for "check url for query parameter"

2

js check for url parameter

const params = new URLSearchParams(window.location.search);

// Check if we have the param
if (params.has("myParam")) {
  console.log("Yep!  We have it.  Value is: " + params.get("myParam"));
} else {
  console.log("The param myParam is not present.");
}
Posted by: Guest on May-08-2021
7

get parameters from url

var url_string = "http://www.example.com/t.html?a=1&b=3&c=m2-m3-m4-m5"; //window.location.href
var url = new URL(url_string);
var c = url.searchParams.get("c");
console.log(c);
Posted by: Guest on July-09-2020

Code answers related to "check url for query parameter"

Code answers related to "Javascript"

Browse Popular Code Answers by Language