user3194721
user3194721

Reputation: 815

Jquery adding querystring parameter without page refreshing

I want to add query string to URL without refreshing page using Jquery. Is it possible?

I don't want to use #.

sample:

http://test.com/prodcuts

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

Answers (1)

greenbandit
greenbandit

Reputation: 2275

Take a look to this: http://benalman.com/projects/jquery-hashchange-plugin/ You can see some examples.

Upvotes: 1

Related Questions