Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7720107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T03:34:51+00:00 2026-06-01T03:34:51+00:00

I have URL like this: http://localhost/PMApp/temp.htm?ProjectID=462 What I need to do is to get

  • 0

I have URL like this:

http://localhost/PMApp/temp.htm?ProjectID=462

What I need to do is to get the details after the ? sign (query string) – that is ProjectID=462. How can I get that using JavaScript?

What I’ve done so far is this:

var url = window.location.toString();
url.match(?);

I don’t know what to do next.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T03:34:53+00:00Added an answer on June 1, 2026 at 3:34 am

    Have a look at the MDN article about window.location.

    The QueryString is available in window.location.search.

    If you want a more convenient interface to work with, you can use the searchParams property of the URL interface, which returns a URLSearchParams object. The returned object has a number of convenient methods, including a get-method. So the equivalent of the above example would be:

    let params = new URL(document.location.toString()).searchParams;
    let name = params.get("name");
    

    The URLSearchParams interface can also be used to parse strings in a querystring format, and turn them into a handy URLSearchParams object.

    let paramsString = "name=foo&age=1337"
    let searchParams = new URLSearchParams(paramsString);
    
    searchParams.has("name") === true; // true
    searchParams.get("age") === "1337"; // true
    

    The URLSearchParams interface is now widely adopted in browsers (95%+ according to Can I Use), but if you do need to support legacy browsers as well, you can use a polyfill.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some pages organised like this: http://localhost/index.html http://localhost/download.html http://localhost/contact.html And I need them
I am using codeigniter, I have URL like this ( http://localhost/en/home/submit ). My App
I have a url that looks like this: http://localhost/store/mens/category/t-shirts/item/a-t-shirt I have a class called
I have a URL like this: http://localhost:9001/view/shopindex/display?keyword=test&searchPostcode=Postcode and I'm putting it in the body
I have a Url like this http://localhost:4737/Site/listing/NH/Plaistow/2831516 and I want it to reroute to
i have a url like this. http://localhost:8080/steer/trip/create/3 . where in my page i want
I have a URL like this for each record: http://localhost:3000/items/3/stuff.json http://localhost:3000/items/1/stuff.json http://localhost:3000/items/4/stuff.json http://localhost:3000/items/9/stuff.json when
I have link like this: http://localhost/BandTemplate/admin/galleries How can I get to the last segment
I have an url like this: http://www.w3schools.com/PHP/func_string_str_split.asp I want to split that url to
I have a url string like this: http://www.google.com/cse?cx=017840637368510444960:ny1lmky7r-0&client=google-csbe&output=xml_no_dtd&q=simon+g I need to send this url

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.