We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a GET form that I'm entering foo, bar in a field.
foo, bar
This generates a string of text (foo%2C+bar) for a parameter in the querystring.
foo%2C+bar
I'm then using ajax-enabled links to paginate through the form results.
After clicking the paginate link the address then becomes foo%252C%2Bbar.
foo%252C%2Bbar
Is this normal?
At the moment I'm having to do the following but I'm sure I shouldn't need to because if I follow the links without javascript they stay correct:
var href = $(this).attr('href'); href.split('?'); // decode querystring of ajax-powered links $.address.value(href.split('?')[0] + '?' + decodeURIComponent(href.split('?')[1]));
Hopefully someone can offer an explanation.
I'm using Chrome if that makes any difference.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a GET form that I'm entering
foo, bar
in a field.This generates a string of text (
foo%2C+bar
) for a parameter in the querystring.I'm then using ajax-enabled links to paginate through the form results.
After clicking the paginate link the address then becomes
foo%252C%2Bbar
.Is this normal?
At the moment I'm having to do the following but I'm sure I shouldn't need to because if I follow the links without javascript they stay correct:
Hopefully someone can offer an explanation.
I'm using Chrome if that makes any difference.
The text was updated successfully, but these errors were encountered: