Possible Duplicate:
Modify the URL without reloading the page
Is there a way for jQuery to change the url without reloading?
Tried changing window.location
and every time I change it, it automatically reloads the page.
Possible Duplicate:
Modify the URL without reloading the page
Is there a way for jQuery to change the url without reloading?
Tried changing window.location
and every time I change it, it automatically reloads the page.
The only part of the url you can change without reloading is after the hash, #
. Any changes to the url before that will be considered a different page and will trigger a reload.