Skip to content
Advertisement

Getting the url parameters inside the html page

I have a HTML page which is loaded using a URL that looks a little like this:

JavaScript

I would like to obtain the query string parameters in the URL without using a jsp.

Questions

  1. Can this be done using Javascript or jQuery? Because I want to test my page using my Node.js local server before deploying it in the remote machine which uses a Java server.

  2. Is there any library that will allow me to do that?

Advertisement

Answer

A nice solution is given here:

JavaScript

And this is how you can use this function assuming the URL is, http://dummy.com/?technology=jquery&blog=jquerybyexample:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement