I want to parse an IE8, IE9 link in newer versions of IE , Chrome and so on.
Let's suppose i receive a link like this in Chrome :
http://mySite.com/myEvent?step=0#myEvent?requestNumber=mmmny98&stepId=1&_suid=543566456..
Chrome will convert this to :
http://mySite.com/myEvent?requestNumber=mmmny98&step=1 automatically and will set my step at 0 ( what it is before the hashed part ) .
If i use document.baseURI or smth like this i'll get the converted link .
I want to parse the non-converted link to get some informations from there ( set the current step and stuff like this ) .