I am loading data in the web page via ajax, and using pushstate and popstate trickery to change the browser address field. The problem is that my ajax URLs are like so

2011/07/25/foo.txt 
2011/07/26/bar.txt 
2011/07/27/baz.txt

So, the first time the web page loads, the browser address field is http://webserver/. On the first ajax load, it becomes http://webserver/2011/07/25/foo.txt. On the second ajax load it becomes http://webserver/2011/07/25/2011/07/26/bar.txt. On the third ajax load the browser URL field becomes http://webserver/2011/07/25/2011/07/26/2011/07/27/baz.txt. In other words, only the last fragment of the address field (split on '/') gets replaced.

How can I replace the entire address field?

link|improve this question

58% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Add a leading / to the pushed path.

link|improve this answer
thanks... that worked. – punkish Aug 13 '11 at 14:03
feedback

Your Answer

 
or
required, but never shown

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