Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
63
rated 0 times [  65] [ 2]  / answers: 1 / hits: 103645  / 13 Years ago, tue, january 17, 2012, 12:00:00

I have for example the following URL stored in a global variable:



var myUrl = http://mydomain.com/something?row=1;


Then a function has to add let's say another parameter called column. How would that function add parameters to a pre-existing URL string using jQuery?



Example of the expected generated string:



http://mydomain.com/something?row=1&column=9


The problem is that myUrl could also be just:



var myUrl = http://mydomain.com/something;


(Notice that there are not pre-existing parameters)


More From » jquery

 Answers
68

Check out the jQuery function .param(), that should do the trick.



http://api.jquery.com/jQuery.param/



You can then just create a function which appends the string generated by .param() to a url.


[#87957] Monday, January 16, 2012, 13 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
willieelisham

Total Points: 201
Total Questions: 108
Total Answers: 106

Location: Zambia
Member since Sat, Oct 31, 2020
4 Years ago
willieelisham questions
Wed, Apr 14, 21, 00:00, 3 Years ago
Wed, Mar 31, 21, 00:00, 3 Years ago
Sun, Oct 11, 20, 00:00, 4 Years ago
Sat, May 9, 20, 00:00, 4 Years ago
;