-1

How can i change http://www.example.com/#home to http://www.example.com/home

I'm using jquery tabs

Is it possible ?

Blitzer Clark
  • 41
  • 1
  • 9

2 Answers2

0

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

Alan Shortis
  • 1,277
  • 3
  • 18
  • 35
0

You may try the replace function:

str = str.replace('#', '');
Darin Dimitrov
  • 1,023,142
  • 271
  • 3,287
  • 2,928