I’m using $("#text").val() to get text from textarea field and send through ajax, but linebreaks (I mean \r\n in textarea) disappeares at all… Why could it be and how to prevent it?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Taken from the documentation for
val():Adding the above snippet to your javascript will override the default behaviour of
val()for textareas and will preserve whitespace.See here for jsFiddle.