Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Change browser address bar URL with jQuery without reloading For example,

www.mywebsite/list.php?page=1

<a href="?page=<?php $row[id] ?>" > this link </a>

on click change address bar ?id=123 etc...

share|improve this question
Change browser address bar URL with jQuery without reloading For example, www.mywebsite/list.php?page=1 <a href"?page=<?php row[id] ?>" > this link </a> on click change adress bar ?id=123 etc... – Shauzab Ali Aug 29 '12 at 7:15
Changing the address bar url, client side will always reload, unless you add and anchor, as in ddfd.com#thisisananchertoaspecificplaceinthedocument. – ShaunOReilly Aug 29 '12 at 7:25
do you mind the appropriate answer to be marked as **accepted ** – Champ Sep 26 '12 at 12:49

3 Answers

not possible at all to change the url or even Quary string of the browser without reloading only part you can change without refresh is #hash part of the url till html4

But in html 5 some kind of url change can be done by the new HISTORY API give it a try http://html5demos.com/history

share|improve this answer

You can not. If you try to do it like this for example:

document.location.search= "?i=123"

It will reload the page. What you can do is change the hash

document.location.hash= "#123"

or

document.location.hash= "#i=123

And then write a simple parsor using split to grab the data you need. Similar question you should have a look at.

share|improve this answer
Note that # (hash) params cannot be read on server side like ? (query) params - initial usage of # in urls is for "go-to anchor/id" functionality – Ivan HuĆĄnjak Aug 29 '12 at 7:21

jQuey: pjax plugin may help you.

share|improve this answer
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Rostyslav Dzinko Aug 29 '12 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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