Let's say I have multiple select box with options that have different options. On click, I want to values to be transported to a textarea. I'll try to show them in images.

|
Let's say I have multiple select box with options that have different options. On click, I want to values to be transported to a textarea. I'll try to show them in images.
|
|||
|
|
|
Possible without jQuery as well and not really complex. Have this JS:
Activate it from within the
And whenever user click the drop down the selected values will be copied to textarea with the given ID, e.g.:
Live test case: http://jsfiddle.net/yahavbr/UBwML/ |
|||||||
|
|
Assuming your textarea has an ID of "text": (Note: this uses the jQuery framework, which makes things a lot easier. See section further down for non-jQuery solution):
This will replace any text already inside the textarea though. If you want to simply add it to the end (with a space), then:
Pure Javascript solution:
|
|||||||||
|