Reputation: 815
I want to add query string to URL without refreshing page using Jquery. Is it possible?
I don't want to use #.
sample:
after appending query string
http://test.com/prodcuts?name=abc.
I don't like below URL.
http://test.com/prodcuts#?name=abc.
Upvotes: 3
Views: 295
Reputation: 2275
Take a look to this: http://benalman.com/projects/jquery-hashchange-plugin/ You can see some examples.
Upvotes: 1