I have a doubt .. I am working with bootstrap-select for the first time, when selecting more than one option on the screen, I show them separated by a comma, for example: ONE, TWO, THREE, FOURTH and when getting the value from the js file with the command $ ("# combobox option: selected"). text (); it returns the UNODOSTRESCUATRO value, how can I get it as it shows on the screen?
This is the code of the select:
<select class="selectpicker" multiple name="combobox " id="combobox " >
<option value="1">UNO</option>
<option value="2">DOS</option>
<option value="3">TRES</option>
<option value="4">CUATRO</option>
</select>