i'm trying to implement History.js and it works the only problem i'm having is with the urls in HTML4 browsers.
The url of the page where i'm using History.js is the following:
http://mywebsite.com/en/foo/bar/
On this page i'm using History.js to submit forms, so the state i'm pushing is a query string: ?name=value&name2=value2 ..
In a HTML5 enabled browser this results in urls as this:
http://mywebsite.com/en/foo/bar/?name=value&name2=value2
Which is ok, but in a HTML4 enabled browser i'm getting this:
http://mywebsite.com/en/foo/bar#bar/?name=value&name2=value2
I really hate it that 'bar' is added to the url 2 times, it should only be in front of the hash sign. I tried looking in the code to find the reason for this, but i was unable to find it. Any idea why this is, and how to fix this?
Kind regards,
Daan