-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Percent sign % breaks ga tracking #96
Comments
Hi ! same issue for me. In firefox for example, from a link in a gmail email I click and the #/# becomes #/%23 and jquery.address won't work. Thanks for that plug by the way. Easy to use and deploy. |
Pykler, did you find any solution for that issue ? :S |
Same problem here with crawable activate. When I send the URL by mail, some webmails will encode the URL. Instead of http://example.com/#!/page will be http://example.com/#%21/page. The plugin doesn't decode the ! character and the ajax request is not correct. |
same issue here I get http://example.com/#!/%2Fsomething instead of http://example.com/#!/something |
Anyone found a solution yet? |
Nop :( |
Anyone tested if it works on 1.5? I haven't had the time to test it out yet, so I don't know if it's fixed. |
A quick workaround is set |
Hey, that work well for me ! |
Along the same lines of this, adding a space in the path will break the uri on some browsers. I don't want to fully encode the entire string, because then you lose things like slashes. The solution for me has been to regex into uri encoded form spaces and one or two other chars, rather than to use encode/decode uri component. I'd like to see better encoding on the next version of this. |
The line of code:
decodeURI does not work if the value had a lone % sign, as far as I can see, value was not previously encoded and therefore should not be decoded
The text was updated successfully, but these errors were encountered: