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 believe last line of function $.fieldValue should looks like:
return $(el).val().replace( /\r?\n/g, "\r\n" );
Otherwise standard submit and ajax submit will result with different newline symbol on server script on linux machine.
Please refer how jQuery serialize form.
Best Regards.
The text was updated successfully, but these errors were encountered:
https://github.com/jquery/jquery/blob/master/src/serialize.js#L124 It makes sense to match jQuery core's serialization logic.
Sorry, something went wrong.
When serializing text, encode all line breaks as CRLF pairs
365d97e
per the application/x-www-form-urlencoded specification #158 #421 #516 #517 Follows jQuery's lead: jquery/jquery@eed3803 5bf81154
No branches or pull requests
I believe last line of function $.fieldValue should looks like:
Otherwise standard submit and ajax submit will result with different newline symbol on server script on linux machine.
Please refer how jQuery serialize form.
Best Regards.
The text was updated successfully, but these errors were encountered: