How to change the addressbar?

401 Views Asked by At

I need to change the URL using Javascript, is that possible? If so, how can I do it?

2

There are 2 best solutions below

0
On

You can go the way that Google Recommends for making Ajax apps crawlable using the window.location.hash

0
On
window.history.pushState({ page : x }, '', '/default.aspx?page=' + x);