I have a simple HTML form:
<form>
<select class="form-control" name="select-1615762852985[]" multiple="true" id="select-1615762852985">
<option value="20" selected="true" id="select-1615762852985-0">Option 1</option>
<option value="20" id="select-1615762852985-1">Option 2</option></select>
</form>
I'm using this code to get option text.
var selected = $('#'+label_id).find('option:selected').text();
When a single choose is selected the result is correct: "Option 1" or "Option 2"
However when you select both at the same time, the result is concatenated together "Option 1Option 2", "Option 1Option 2"
Is there a way to do this without concatenating the results?