The img below describes what I am trying to do:

So when an entry from the select list is selected and button “Copy” is pressed, it will add an < li > element to the text area.
Any ideas, resources?
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.
When the button is clicked you can just read the selected option using jQuery and add it to the text area.
HTML
jQuery
You can only add text to a textarea, it doesn’t render html tags (so a list inside it won’t work). I used
\nto create newlines.Fiddle
Here’s a working fiddle