How can i change http://www.example.com/#home to http://www.example.com/home
I'm using jquery tabs
Is it possible ?
How can i change http://www.example.com/#home to http://www.example.com/home
I'm using jquery tabs
Is it possible ?
pushState
will do this, though support isn't so great.
Read up here: http://badassjs.com/post/840846392/location-hash-is-dead-long-live-html5-pushstate?16328a60
You may try the replace function:
str = str.replace('#', '');