2

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.

Community
  • 1
  • 1
developarvin
  • 4,940
  • 12
  • 54
  • 100

1 Answers1

1

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.

Samuel Neff
  • 73,278
  • 17
  • 138
  • 182