I am using jQuery, my problem is ..
my url looks like this after an ajax request (using the hashchange function to enable history):
mysite.com/Content/#Disc%2Findex
I want it to look like this:
mysite.com/Content/#Disc/index
I noticed this line in js:
url = url.replace(/^.*#/, '');
Does this have anything to do with this? when I insert /between quotes that it works, but my content is not loading.
source
share