Skip to content
Advertisement

What is the best way to compose a link with GET parameters using JavaScript or jQuery

I want to compose a link with several GET parameters gathered from variables. For example:

JavaScript

In JavaScript, if I have variables var1, var2 and var3 set already to the corresponding values, I know the link can be composed by concatenating strings and the variables as follows:

JavaScript

Is there a cleaner or better way to do this? In jQuery, the AJAX requests function accept a data parameter that can be easily set as follows:

JavaScript

Is there a similar way to compose the link but simply store it inside a variable instead of performing an ajax request?

I’m aware of jQuery’s .get() function, which, as the documentation mentions:

“Load data from the server using an HTTP GET request.”

I don’t want this, I just need to compose the link.

Advertisement

Answer

JavaScript

that’s a function I made a while back (pre ES2015) – call it with the base URL as parameter 1, and an object like

JavaScript

Here it is for ES2015, for laffs

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