Im usnig History.js to push a url but in IE it appends the page name.
if my original url is : http://www.mydomain.com/Home.aspx
and then I execute the following:
var url = window.location.protocol + '//' + window.location.host + '/Home.aspx?id=2&pl=4'; History.pushState(null, null, url)
In Chrome my url becomes : http://www.mydomain.com/Home.aspx?id=2&pl=4
In IE 8 my url becomes: http://www.mydomain.com/Home.aspx#Home.aspx?id=2&pl=4
If I paste the IE 8 url in chrom my code fails...
Firstly, what should the correct html 4 url look like and secondly, how do I fix it?