I have a select element that allows for multiple selections. I\'d like to display the selected values in another part of the page (in a div or something) as the user makes chang
In your fiddle, I just used .val(). This returns an array
.val()
JSFiddle Link
$(function() { $('#fruits').change(function() { console.log($(this).val()); }); });