i'm implementing deep linking for my website.

I wonder, why jquery-address is unable just to set a query string, like this:

www.mywebsite.com?search=keyword

When i using

$.address.parameter("search", "keyword")

jquery-address sets follwing url:

www.mywebsite.com?search#/?keyword

Why, it doing so ?

I just need the plain old query string, like in my first example.

Help, please !

link|improve this question

53% accept rate
Out of interest why are you using jquery for something like this? Why not just set window.location in javascript which is presumably what jquery is doing anyway? – James Gaunt Aug 19 '10 at 19:09
feedback

1 Answer

Those addresses use the hash, which is because they're meant for the client. If you want to manipulate the query string, you can use the query plugin. E.g.:

window.location.search = $.query.set('search', 'keyword');

EDIT:

If you wanted to make multiple changes, you could do, e.g.:

var newQuery = $.query.set('search', 'keyword');
// ...
newQuery = newQuery.set('another', 'value');
window.location.search = newQuery;
link|improve this answer
Thanks, it seems to be working with simple case of setting. But i have troubles with setting values, separated with comma. This code: window.location.search = $.query.set('search', 'keyword1, keyword2') produces the URL like this: www.mywebsite.com?search=keyword1%2C%2Bkeyword2. The %2C code is ok, because it is comma, but the %2B is strange, because it is "+" sign. So, it sets ?search=keyword1,+keyword2 instead of ?search=keyword, keyword2 – AntonAL Aug 19 '10 at 18:59
+ is used for space in application/x-www-form-urlencoded. However, I don't know if that URL is exactly correct. – Matthew Flaschen Aug 19 '10 at 19:32
Hmm. Setting window.location forces redirection to modified URL and reloading the page. Unfortunately, this way is not suitable for me ... – AntonAL Aug 20 '10 at 12:38
@Anton, you can not change the query string without forcing a load. That is why jquery-address (and other code) uses the hash (the part after the #). However, you can make multiple changes to the query string with a single load. I added an example of that. – Matthew Flaschen Aug 21 '10 at 2:35
Thanks. I've switched to use hash-values. Everything is working now. – AntonAL Aug 23 '10 at 12:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.