Reputation: 55273
I want to add multiples lines to a textarea.
For example, this is the textarea:
Name:
Age:
Hobbies:
Any suggestions to accomplish this?
Upvotes: 1
Views: 110
Reputation: 26861
try with something like:
$("#your-widget").val("Name:\n\nAge:\n\nHobbies:");
Upvotes: 0
Reputation: 140220
$("#my-textarea").val(
"Name:\n\n" +
"Age:\n\n" +
"Hobbies:\n\n"
);
Upvotes: 1