wyc
wyc

Reputation: 55273

Add multiples lines of text to textarea with jQuery?

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

Answers (2)

Tudor Constantin
Tudor Constantin

Reputation: 26861

try with something like:

$("#your-widget").val("Name:\n\nAge:\n\nHobbies:");

Upvotes: 0

Esailija
Esailija

Reputation: 140220

$("#my-textarea").val(
    "Name:\n\n" + 
    "Age:\n\n" + 
    "Hobbies:\n\n"
);

Upvotes: 1

Related Questions