Please let me know how it can be possible to change url without page refreshing and without using hash tag.
Asked
Active
Viewed 176 times
-1
-
I want to use same functionality that are in asana task manager use. – Dileep Kheni Dec 28 '13 at 06:38
-
1You want the location bar to show `https://BankOfMyCountry.tld` instead of `http://myPhishingSite.tld`? No. – some Dec 28 '13 at 06:43
1 Answers
2
history.pushState(null, null, '/goto/new/url');
if you want to go to relative and new URL.
This is HTML5 history api so will work for modern browsers.... other wise you can fall back to hash urls.....

WebServer
- 1,316
- 8
- 12