Home > Tips & Tricks > Get Query String Parameters From URL in JavaScript

Get Query String Parameters From URL in JavaScript

In this trick, we will know how you can get the query string parameters of the URL in JavaScript. We will URLSearchParams API to get the query string from URL.

Let’s see with an example.

Suppose you have following URL.
https://example.com/service.php?show=all&price=0

In this URL, ?show=all&price=0 this part is a query string and you want to get the value of these parameters. Let’s see how you can get it.

Output

true
0
[“all”]
?show=all&price=0
?show=all&price=0&active=1

Hope you understand how to get query string parameters in javascript.

Being Tricky 😉

Photo of author

About Aman Mehra

Hey there! I'm Aman Mehra, a full-stack developer with over six years of hands-on experience in the industry. I've dedicated myself to mastering the ins and outs of PHP, WordPress, ReactJS, NodeJS, and AWS, so you can trust me to handle your web development needs with expertise and finesse. In 2021, I decided to share my knowledge and insights with the world by starting this blog. It's been an incredible journey so far, and I've had the opportunity to learn and grow alongside my readers. Whether you're a seasoned developer or just dipping your toes into the world of web development, I'm here to provide valuable content and solutions to help you succeed. So, stick around, explore the blog, and feel free to reach out if you have any questions or suggestions. Together, let's navigate the exciting world of web development!

Leave a Comment