Answers for "textarea write at end a line"

CSS
2

textarea only one line

textarea {
  resize: none;
  white-space: nowrap;
  overflow-x: scroll; /* or hidden */
}
Posted by: Guest on June-24-2020
0

convert elment in div to textarea with newline

$(this).val().replace(/rn|r|n/g,"<br />")
Posted by: Guest on February-12-2021

Code answers related to "textarea write at end a line"

Browse Popular Code Answers by Language