Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a <select multiple='multiple' and I need to show the selected value in a div or some other part of the page.

I did this but the string is all smushed together. How can I separate each value with a comma?

I made a live example with what I have so far.

Or if you prefer, here is the code:

html:

<select multiple='multiple' id="selMulti">
     <option value="1">Option 1</option>
     <option value="2">Option 2</option>
     <option value="3">Option 3</option>
     <option value="4">Option 4</option>    
</select>
<input type="button" id="go" value="Go!" />
<div style="margin-top: 10px;" id="result"></div>

js:

$("#go").click(function(){
     var selMulti = $("#selMulti option:selected").text();
     $("#result").text(selMulti);
});

If you select the option 1 and 2, the result will be:

Option 1Option 2

What I need is:

Option 1, Option 2

Thanks

share|improve this question

2 Answers

up vote 14 down vote accepted

You need to map the elements to an array and then join them:

$("#go").click(function(){
     var selMulti = $.map($("#selMulti option:selected"), function (el, i) {
         return $(el).text();
     });
     $("#result").text(selMulti.join(", "));
});

Working demo: http://jsfiddle.net/AcfUz/

share|improve this answer
nice, work perfect. Thanks – Ricardo Arruda Oct 27 '11 at 11:16
3  
Pretty freakin great soloution! :) – Marco Johannesen Oct 27 '11 at 11:16
$("#go").click(function(){
     var textToAppend = "";
     var selMulti = $("#selMulti option:selected").each(function(){
           textToAppend += (textToAppend == "") ? "" : ",";
           textToAppend += $(this).text();           
     });
     $("#result").html(textToAppend);
});
share|improve this answer
Need to add ` + ','` in the append call – JohnP Oct 27 '11 at 11:16
The OP specifically asked for a comma-separated result. – Andy E Oct 27 '11 at 11:16
fiexed in answer :) – Kamil Lach Oct 27 '11 at 11:21
Now your solution will append a comma to the end of the string, e.g. Option 2,Option 3, – Andy E Oct 27 '11 at 11:22
Now should work as expeced, but its's more complicated then Andy E solution. – Kamil Lach Oct 27 '11 at 11:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.